curl --request PUT \
--url https://api.getcargo.io/v1/connection/connectors/{uuid} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"config": {},
"rateLimit": {
"unit": "day",
"max": 123
},
"cacheTtlMilliseconds": 123
}
'{
"connector": {
"uuid": "<string>",
"workspaceUuid": "<string>",
"userUuid": "<string>",
"name": "<string>",
"slug": "<string>",
"rateLimit": {
"unit": "day",
"max": 123
},
"cacheTtlMilliseconds": 123,
"integrationSlug": "<string>",
"playsCount": 123,
"toolsCount": 123,
"modelsCount": 123,
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>",
"useCredits": true,
"config": "<unknown>"
}
}Update a connector
curl --request PUT \
--url https://api.getcargo.io/v1/connection/connectors/{uuid} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"config": {},
"rateLimit": {
"unit": "day",
"max": 123
},
"cacheTtlMilliseconds": 123
}
'{
"connector": {
"uuid": "<string>",
"workspaceUuid": "<string>",
"userUuid": "<string>",
"name": "<string>",
"slug": "<string>",
"rateLimit": {
"unit": "day",
"max": 123
},
"cacheTtlMilliseconds": 123,
"integrationSlug": "<string>",
"playsCount": 123,
"toolsCount": 123,
"modelsCount": 123,
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>",
"useCredits": true,
"config": "<unknown>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Successful response
Updated connector details.
Show child attributes
Was this page helpful?