PUT
/
manage
/
connector
/
{connector_id}
/
credential
/
{credential_id}
Associate Credential To Connector
curl --request PUT \
  --url https://cloud.onyx.app/api/manage/connector/{connector_id}/credential/{credential_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "access_type": "public",
  "auto_sync_options": {},
  "groups": [
    123
  ]
}'
{
  "success": true,
  "message": "<string>",
  "data": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

connector_id
integer
required
credential_id
integer
required

Body

application/json

Response

200
application/json

Successful Response

The response is of type object.