Skip to content

reject_model_share_request

Reject a pending model share request. Caller must have Owner or Editor access to the suggested target project in the target tenant. If the target project does not yet exist, workspace Owner role is also accepted. Returns: request_id, status=‘rejected’, updated_at.

NameTypeRequiredDefaultDescription
request_idAnnotated[str, Field(description='UUID of the model share request.')]Yes

Returns a structured object. Top-level fields:

  • request_id (string)
  • status (string)
  • updated_at (string)

See the response example below for the full payload shape.

{
"name": "reject_model_share_request",
"arguments": {
"request_id": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"
}
}
{
"request_id": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa",
"status": "rejected",
"updated_at": "2026-04-28T10:00:00+00:00"
}
  • Module: Sharing
  • Requires authentication via API token or Auth0 JWT.