Applications
Update application auth
PUT
/
api
/
v2
/
public
/
application
/
:slug
curl --request PUT \
--url https://api.gocobalt.io/api/v2/public/application/:slug \
--header 'Content-Type: application/json' \
--header 'linked_account_id: <linked_account_id>' \
--header 'x-api-key: <x-api-key>' \
--data '{
"auth_object": {}
}'
{
"success": true,
"message": "Integration - slack created"
}
This API is used to update a linked accounts’s auth object (API keys, Access Tokens, etc;) of an application integration in Cobalt.
Request description
Headers
linked_account_id
string
requiredUnique customer identification id. For Eg: markwood@some_email.com
Path Parameters
slug
string
requiredApplication slug. For Eg: slack
Body Parameters
auth_object
object
requiredAn object containing the details of your application associated with you account
Response description
200
400
success
boolean
Success status
message
string
Success message
curl --request PUT \
--url https://api.gocobalt.io/api/v2/public/application/:slug \
--header 'Content-Type: application/json' \
--header 'linked_account_id: <linked_account_id>' \
--header 'x-api-key: <x-api-key>' \
--data '{
"auth_object": {}
}'
{
"success": true,
"message": "Integration - slack created"
}