Integration Credential

List integration credentials

List all integration credential objects of the organization. Sensitive secret values are masked in the response.

get/api/v1/integration_credentials

Query parameters

page_sizeinteger

Number of results per page

cursorstring

A value used for cursor-based pagination. Obtain this value from the next or previous URLs in a paginated response. Do not construct cursor values manually.

idstring

Return only integration credentials with the given IDs (comma-separated).

namestring

Return only integration credentials with the given name.

type'coupa_sand_oauth2'

Return only integration credentials of the given type.

ordering'id' | '-id' | 'name' | '-name' | 'type' | '-type'

Result ordering.

Response

OK

Example response

{
  "results": [
    {
      "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.