GET
/
entity-integration-mappings
List entity integration mappings
curl --request GET \
  --url https://api.cloud.flexprice.io/v1/entity-integration-mappings \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "created_at": "<string>",
      "created_by": "<string>",
      "entity_id": "<string>",
      "entity_type": "customer",
      "environment_id": "<string>",
      "id": "<string>",
      "provider_entity_id": "<string>",
      "provider_type": "<string>",
      "status": "published",
      "tenant_id": "<string>",
      "updated_at": "<string>",
      "updated_by": "<string>"
    }
  ],
  "pagination": {
    "limit": 123,
    "offset": 123,
    "total": 123
  }
}

Authorizations

x-api-key
string
header
required

Enter your API key in the format x-api-key <api-key>*

Query Parameters

entity_id
string

Filter by FlexPrice entity ID

entity_type
string

Filter by entity type

provider_type
string

Filter by provider type

provider_entity_id
string

Filter by provider entity ID

limit
integer

Number of results to return (default: 20, max: 100)

offset
integer

Pagination offset (default: 0)

Response

200
application/json

OK

The response is of type object.