Skip to main content
GET
/
organizations
/
{orgId}
/
integrationconfigs
List All IntegrationConfigs
curl --request GET \
  --url https://api.m3ter.com/organizations/{orgId}/integrationconfigs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "entityType": "Bill",
      "destination": "Stripe",
      "version": 123,
      "dtCreated": "2023-11-07T05:31:56Z",
      "dtLastModified": "2023-11-07T05:31:56Z",
      "createdBy": "<string>",
      "lastModifiedBy": "<string>",
      "entityId": "00000000-0000-0000-0000-000000000000",
      "destinationId": "00000000-0000-0000-0000-000000000000",
      "configData": {},
      "authorized": true,
      "enabled": true,
      "triggerType": "EVENT",
      "integrationCredentialsId": "00000000-0000-0000-0000-000000000000",
      "name": "My Integration"
    }
  ],
  "nextToken": "<string>"
}

Authorizations

Authorization
string
header
required

m3ter supports machine to machine authentication using the clientCredentials OAuth2 flow.

The authorizationCode flow controls access for human users via the m3ter Console application.

Path Parameters

orgId
string
required

The unique identifier (UUID) for the organization. This specifies the organization within which the webhook destination is created.

Query Parameters

pageSize
integer<int32>

Specifies the maximum number of integration configurations to retrieve per page.

Required range: 1 <= x <= 200
nextToken
string

The nextToken for multi-page retrievals. It is used to fetch the next page of integration configurations in a paginated list.

destinationId
string

optional filter for a specific destination

Response

Return the IntegrationConfigs

data
object[]
nextToken
string