PUT
/
sources
/
{id}
Update Tenant Source
curl --request PUT \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/sources/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "settings": {
    "delimiter": ","
  },
  "replacements": {
    "old": "new"
  }
}'
{
  "message": "Tenant source updated successfully"
}

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"

Body

application/json

Response

200
application/json

Tenant source updated successfully

The response is of type object.