list_model_share_requests
List model share requests involving the current tenant. Filter by direction and status to narrow results.
read-only · idempotent
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
direction | str | No | 'all' | 'sent' — requests this tenant created; 'received' — requests targeting this tenant; 'all' — both |
status | str | No | 'all' | 'pending', 'accepted', 'rejected', 'revoked', or 'all' |
Returns
Section titled “Returns”requests(array<object>) — list of share request objects
Each object contains: id, source_tenant_id, source_project, source_model, requester_id, target_tenant_id, suggested_target_project, suggested_target_model, status, accepter_id, accepted_target_project, accepted_target_model, source_commit_sha, target_commit_sha, created_at, updated_at.
Example
Section titled “Example”Tool Call
Section titled “Tool Call”{ "name": "list_model_share_requests", "arguments": { "direction": "received", "status": "pending" }}Response
Section titled “Response”{ "requests": [ { "id": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa", "source_tenant_id": "11111111-1111-1111-1111-111111111111", "source_project": "platform", "source_model": "revenue_forecast", "requester_id": "user-uuid", "target_tenant_id": "22222222-2222-2222-2222-222222222222", "suggested_target_project": "shared-models", "suggested_target_model": "acme_revenue_forecast", "status": "pending", "accepter_id": null, "accepted_target_project": null, "accepted_target_model": null, "source_commit_sha": "abc123", "target_commit_sha": null, "created_at": "2026-05-09T10:00:00+00:00", "updated_at": "2026-05-09T10:00:00+00:00" } ]}- Module:
Sharing - Requires authentication via API token or Auth0 JWT.