Retrieves information about the workspace integration.
Endpoint: /integrations/workspace/info
Method: GET
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/workspace/info \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"workspaceId": "workspace-123",
"integrations": [
"webhook",
"vertofx"
]
}
}
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Workspace integration info
The response is of type object
.
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/workspace/info \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"workspaceId": "workspace-123",
"integrations": [
"webhook",
"vertofx"
]
}
}