v1
latestOpenAPI 3.0.12026-07-226992320.0 KBIntegration Auth
Update Integration Auth
Partially updates an existing auth record by authId. Only fields provided in the request body are updated — omitted fields remain unchanged. Returns the updated auth record.
patch/v1/integrations/{integrationId}/auth/{authId}
Path parameters
integrationIdstring required
Unique identifier for the integration
authIdstring required
Unique identifier for the auth record
Request body
Example request
{
"token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...updated",
"username": "new_api_user@example.com",
"password": "newS3cretP@ssword",
"apiKey": {
"key": "X-API-KEY",
"value": "<secret>",
"position": "header"
},
"headers": [
{
"key": "Content-Type",
"value": "application/json"
}
]
}Response
OK
Example response
{
"authId": "auth_P3kNz7Yv1Qm9",
"integrationId": "intg_AuUKK371Spr5",
"authType": "API_KEY"
}