Integrations
Update IntegrationConfig
Update the integration configuration for the given UUID.
This endpoint allows you to update the configuration of a specific integration within your organization. It is used to modify settings or parameters of an existing integration.
put/organizations/{orgId}/integrationconfigs/{id}
Path parameters
orgIdstring required
The unique identifier (UUID) of your Organization. The Organization represents your company as a direct customer of our service.
idstring required
The UUID of the IntegrationConfig. This ID identifies which specific integration configuration you wish to update.
Request body
Example request
{
"entityType": "Bill",
"entityId": "00000000-0000-0000-0000-000000000000",
"destination": "Stripe",
"destinationId": "00000000-0000-0000-0000-000000000000",
"integrationCredentialsId": "00000000-0000-0000-0000-000000000000",
"name": "My Integration"
}Response
Returns the IntegrationConfig
Example response
{
"entityType": "Bill",
"entityId": "00000000-0000-0000-0000-000000000000",
"destination": "Stripe",
"destinationId": "00000000-0000-0000-0000-000000000000",
"integrationCredentialsId": "00000000-0000-0000-0000-000000000000",
"name": "My Integration"
}