Skip to main content
GET
/
api
/
gen-ai
/
beta
/
endpoints
/
{endpointId}
/
collaborators
Get the collaborators for a Gen AI Endpoint
curl --request GET \
  --url https://api.example.com/api/gen-ai/beta/endpoints/{endpointId}/collaborators \
  --header 'X-Domino-Api-Key: <api-key>'
[
  {
    "name": "John Doe",
    "organizationId": "62313ce67a0af0281c01a6a5",
    "userId": "62313ce67a0af0281c01a6a5"
  }
]

Authorizations

X-Domino-Api-Key
string
header
required

Path Parameters

endpointId
string
required

The ID of the endpoint to get

Response

Success

name
string

The name of the entity

Example:

"John Doe"

organizationId
string

The organization ID of the entity

Example:

"62313ce67a0af0281c01a6a5"

userId
string

The user ID of the entity

Example:

"62313ce67a0af0281c01a6a5"