Skip to main content
POST
/
sources
/
{id}
/
activate
Activate Tenant Source
curl --request POST \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/sources/{id}/activate \
  --header 'Authorization: Bearer <token>'
{
  "message": "Source activated successfully"
}
Activates a tenant source association by its ID.

Required Permissions

  • sources:update

Authentication

This endpoint requires authentication. Include your bearer token in the Authorization header.

Path Parameters

ParameterTypeInRequiredDescription
idstringpathTenant source ID

Responses

✅ 200 - Source activated successfully

⚠️ 400 - undefined

⚠️ 401 - undefined

⚠️ 404 - undefined

❌ 500 - undefined

Tags

Sources

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Path Parameters

id
string
required

Tenant source ID

Example:

"ts-1"

Response

Source activated successfully

message
string
Example:

"Source activated successfully"

I