Skip to main content
GET
/
data-shops
/
subscriptions
/
{subscription_id}
/
matches
Get subscription matches
curl --request GET \
  --url https://api-dev.narrative.io/data-shops/subscriptions/{subscription_id}/matches \
  --header 'Authorization: Bearer <token>'
{
  "records": [
    {
      "attributes": [
        {
          "id": 123,
          "name": "<string>"
        }
      ],
      "dataset": {
        "id": 123,
        "company_id": 123,
        "name": "<string>",
        "description": "<string>"
      },
      "matching_access_rules": {
        "id": 123,
        "pricing": 123,
        "constraints": [
          "<string>"
        ]
      },
      "non_matching_access_rules": {
        "id": 123,
        "pricing": 123,
        "constraints": [
          "<string>"
        ]
      },
      "type": "attributes"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

subscription_id
string<uuid>
required

Unique identifier for a subscription.

Response

200 - application/json

OK

records
object[]