/v1/collaborationRequests/getWorkspaceRequests
post
Path Parameters
Request Headers
HttpEndpointRequestHeaders_AuthRequired_JsonContentType

FieldTypeRequiredDescription
AuthorizationstringYes

Access token

Example: Bearer <token>

Content-TypestringYes

HTTP JSON request content type

Example: application/json

Request Query
Request Body
GetWorkspaceCollaborationRequestsEndpointParams

Parameters for retrieving collaboration requests sent from your workspace. Use pagination to handle large numbers of requests.

{
workspaceId?: string
page?: number
pageSize?: number
}
200 Response Headers
HttpEndpointResponseHeaders_ContentType_ContentLength

FieldTypeRequiredDescription
Content-TypestringYes

HTTP JSON response content type

Example: application/json

Content-LengthstringYes

HTTP response content length in bytes

Example: 1024

200 Response Body
GetWorkspaceCollaborationRequestsEndpointResult

Paginated list of collaboration requests sent from your workspace, showing the status of each invitation.

{
page: number
}
CollaborationRequestForWorkspace

A collaboration request as seen by the workspace owner. Contains details about who was invited and the current status of the invitation.

{
resourceId: string
createdBy: Agent
createdAt: number
lastUpdatedBy: Agent
lastUpdatedAt: number
isDeleted: boolean
deletedAt?: number
deletedBy?: Agent
workspaceId: string
recipientEmail: string
message: string
expiresAt?: number
workspaceName: string
readAt?: number
status: string
statusDate: number
}
Agent

Represents a user or system entity that performed an action (e.g., created or updated a resource)

{
agentId: string
agentType: string
}
4XX or 5XX Response Headers
HttpEndpointResponseHeaders_ContentType_ContentLength

FieldTypeRequiredDescription
Content-TypestringYes

HTTP JSON response content type

Example: application/json

Content-LengthstringYes

HTTP response content length in bytes

4XX or 5XX Response Body
EndpointErrorResult

Endpoint error result

{
errors?: Array<ExternalError>
}
ExternalError

{
message: string
}