Integration Credential
Create integration credential
Create a new integration credential object. The secret must match the shape required by type.
post/api/v1/integration_credentials
Request body
Example request
{
"id": 42,
"url": "https://example.rossum.app/api/v1/integration_credentials/42",
"name": "Acme Corp — Coupa prod",
"type": "coupa_sand_oauth2",
"secret": {
"client_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"client_secret": "s3cr3t-value",
"base_api_url": "https://example.coupahost.com",
"scope": "core.invoice.create core.common.read"
},
"hooks": [
"https://example.rossum.app/api/v1/hooks/1500"
],
"organization": "https://example.rossum.app/api/v1/organizations/406",
"created_by": "https://example.rossum.app/api/v1/users/9524",
"created_at": "2026-01-01T15:02:25.653324Z",
"modified_by": "https://example.rossum.app/api/v1/users/10775",
"modified_at": "2021-04-26T10:08:03.856648Z"
}Response
Created
Example response
{
"id": 42,
"url": "https://example.rossum.app/api/v1/integration_credentials/42",
"name": "Acme Corp — Coupa prod",
"type": "coupa_sand_oauth2",
"secret": {
"client_id": "[redacted...]",
"client_secret": "[redacted...]",
"base_api_url": "https://example.coupahost.com",
"scope": "core.invoice.create core.common.read"
},
"hooks": [
"https://example.rossum.app/api/v1/hooks/1500"
],
"organization": "https://example.rossum.app/api/v1/organizations/406",
"created_by": "https://example.rossum.app/api/v1/users/9524",
"created_at": "2026-01-01T15:02:25.653324Z",
"modified_by": "https://example.rossum.app/api/v1/users/10775",
"modified_at": "2021-04-26T10:08:03.856648Z"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.