Zype Consumers API

The end-viewer surface: consumer records, password reset flows, parental access codes, device pin linking, and video, playlist and subscription entitlements. 24 operations.

Operations 24

GET /consumers List Consumers #
POST /consumers Create Consumers #
GET /consumers/{id} View Consumer #
PUT /consumers/{id} Update Consumer #
DELETE /consumers/{id} Delete Consumer #
GET /pin/status Retrieve Device Pin #
POST /pin/acquire Acquire Device Pin #
PUT /pin/link Link Device Pin #
PUT /pin/unlink Unlink Device Pin #
GET /videos/{video_id}/entitled Check Video Entitlement #
GET /consumers/{consumer_id}/videos List Video Entitlements #
POST /consumers/{consumer_id}/videos Create video entitlement #
GET /consumers/{consumer_id}/videos/{id} View Video Entitlement #
PUT /consumers/{consumer_id}/videos/{id} Update Video Entitlement #
DELETE /consumers/{consumer_id}/videos/{id} Delete Video Entitlement #
GET /consumers/{consumer_id}/playlists List Playlist Entitlements #
POST /consumers/{consumer_id}/playlists Create a Playlist Entitlement #
GET /consumers/{consumer_id}/playlists/{id} View Playlist Entitlement #
PUT /consumers/{consumer_id}/playlists/{id} Update Playlist Entitlement #
DELETE /consumers/{consumer_id}/playlists/{id} Delete Playlist Entitlement #
GET /consumers/{consumer_id}/subscription_entitlements List Subscription Entitlements #
PUT /consumers/{id}/reset_parental_access_code Reset Consumer Parental Access Code #
PUT /consumers/forgot_password Initiate Consumer Forgot Password Flow - Consumer receives forgot password email. #
PUT /consumers/reset_password Reset Consumer's Password Flow #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/consumers"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

zype-consumers.json Raw ↑
{
  "openapi": "3.0.1",
  "info": {
    "title": "Consumers",
    "version": "1.0.0",
    "description": ""
  },
  "servers": [
    {
      "url": "https://api.zype.com/"
    }
  ],
  "security": [
    {
      "api_key": []
    }
  ],
  "components": {
    "securitySchemes": {
      "api_key": {
        "type": "apiKey",
        "name": "api_key",
        "in": "query"
      },
      "bearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "OAuth access token",
        "description": "OAuth access token of the consumer"
      }
    }
  },
  "paths": {
    "/consumers": {
      "get": {
        "summary": "List Consumers",
        "tags": [
          "Consumers"
        ],
        "operationId": "listConsumers",
        "parameters": [
          {
            "name": "id",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string"
            },
            "description": "Filter by ID\nExample: `id=5992f328ce593000ef000008`"
          },
          {
            "name": "created_at",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "description": "Filter records by created date using times in ISO8601 format (Example: `2017-01-01T00:00:00-00:00`) or Unix timestamps (Example: `1483228800`) **Note**: Range filters can be applied by adding a suffix: \u2018.gt\u2019, \u2018.gte\u2019, \u2018.lt\u2019, \u2018lte\u2019 (Example: `created_at.gte`)"
          },
          {
            "name": "updated_at",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "description": "Filter records by updated at date using times in ISO8601 format (Example: `2017-01-01T00:00:00-00:00`) or Unix timestamps (Example: `1483228800`) **Note**: Range filters can be applied by adding a suffix: \u2018.gt\u2019, \u2018.gte\u2019, \u2018.lt\u2019, \u2018lte\u2019 (Example: `updated_at.gte`)"
          },
          {
            "name": "q",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string"
            },
            "description": "Filter by keyword"
          },
          {
            "name": "order",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string",
              "enum": [
                "asc",
                "desc"
              ]
            },
            "description": "Filter by ascending or descending order"
          },
          {
            "name": "sort",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string"
            },
            "description": "Sort on the specified field"
          },
          {
            "name": "page",
            "in": "query",
            "required": false,
            "schema": {
              "type": "integer"
            },
            "description": "Page number to return, with per_page dictating page size"
          },
          {
            "name": "per_page",
            "in": "query",
            "required": false,
            "schema": {
              "type": "integer"
            },
            "description": "Number of records to return per page"
          },
          {
            "name": "braintree_id",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "description": "Filter by the consumer's Braintree ID"
          },
          {
            "name": "recurly_code",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "description": "Filter by the consumer's Recurly Code"
          },
          {
            "name": "stripe_id",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "description": "Filter by the consumer's Stripe ID"
          },
          {
            "name": "email",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "description": "Filter by the consumer's email"
          },
          {
            "name": "password_token",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "description": "Filter by the consumer's password token"
          },
          {
            "name": "rss_token",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "description": "Filter by the consumer's RSS token"
          },
          {
            "name": "pass_count",
            "in": "query",
            "schema": {
              "type": "integer"
            },
            "description": "Filter consumers by the number of pass plans that have been purchased or redeemed.\n*Note*: Range filters can be applied by adding a suffix: \u2018.gt\u2019, \u2018.gte\u2019, \u2018.lt\u2019, \u2018lte\u2019 (Example: pass_count.gte = 1)"
          },
          {
            "name": "playlist_count",
            "in": "query",
            "schema": {
              "type": "integer"
            },
            "description": "Filter consumers by the number of playlists they are entitled to watch via purchase or pass plan.\n*Note*: Range filters can be applied by adding a suffix: \u2018.gt\u2019, \u2018.gte\u2019, \u2018.lt\u2019, \u2018lte\u2019 (Example: playlist_count.gte = 1)"
          },
          {
            "name": "remember_token",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "description": "The password token to use during remember login workflows"
          },
          {
            "name": "sign_in_count",
            "in": "query",
            "schema": {
              "type": "integer"
            },
            "description": "Filter consumers by the number of times they have signed in.\n*Note*: Range filters can be applied by adding a suffix: \u2018.gt\u2019, \u2018.gte\u2019, \u2018.lt\u2019, \u2018lte\u2019 (Example: sign_in_count.gte)"
          },
          {
            "name": "last_sign_in_at",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "description": "Filter records by last_sign_in_at using times in ISO8601 format (Example: `2017-01-01T00:00:00-00:00`) or Unix timestamps (Example: `1483228800`) **Note**: Range filters can be applied by adding a suffix: \u2018.gt\u2019, \u2018.gte\u2019, \u2018.lt\u2019, \u2018lte\u2019 (Example: `last_sign_in_at.gte`)"
          },
          {
            "name": "current_sign_in_at",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "description": "Filter records by current_sign_in_at using times in ISO8601 format (Example: `2017-01-01T00:00:00-00:00`) or Unix timestamps (Example: `1483228800`) **Note**: Range filters can be applied by adding a suffix: \u2018.gt\u2019, \u2018.gte\u2019, \u2018.lt\u2019, \u2018lte\u2019 (Example: `current_sign_in_at.gte`)"
          },
          {
            "name": "terms",
            "in": "query",
            "schema": {
              "type": "boolean"
            },
            "description": "Boolean field to indicate if the consumer has agreed to terms and conditions"
          },
          {
            "name": "updates",
            "in": "query",
            "schema": {
              "type": "boolean"
            },
            "description": "Boolean field to indicate if the consumer has agreed to receive updates"
          },
          {
            "name": "video_count",
            "in": "query",
            "schema": {
              "type": "integer"
            },
            "description": "Filter records by video count\n*Note*: Range filters can be applied by adding a suffix: \u2018.gt\u2019, \u2018.gte\u2019, \u2018.lt\u2019, \u2018lte\u2019 (Example: video_count.gte = 3)"
          },
          {
            "name": "transaction_count",
            "in": "query",
            "schema": {
              "type": "integer"
            },
            "description": "Filter consumers by their number of transactions.\n*Note*: Range filters can be applied by adding a suffix: \u2018.gt\u2019, \u2018.gte\u2019, \u2018.lt\u2019, \u2018lte\u2019 (Example: transaction.gte = 3)"
          },
          {
            "name": "payment_provider",
            "in": "query",
            "description": "Filter records by payment provider.",
            "schema": {
              "type": "string",
              "enum": [
                "stripe",
                "braintree",
                "recurly",
                "redemption",
                "third_party",
                "amazon_fire",
                "google_play",
                "itunes",
                "samsung",
                "tizen",
                "roku"
              ]
            }
          },
          {
            "name": "custom",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string"
            },
            "description": "Filter records by custom attribues + Example: custom[weight]=100"
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "title": "ConsumersResponse",
                  "type": "object",
                  "properties": {
                    "response": {
                      "type": "array",
                      "items": {
                        "$ref": "#/paths/~1consumers/post/responses/201/content/application~1json/schema/properties/response"
                      }
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable entity",
            "content": {
              "application/json": {
                "schema": {
                  "title": "Unprocessable Entity",
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "Create Consumers",
        "tags": [
          "Consumers"
        ],
        "operationId": "createConsumer",
        "requestBody": {
          "description": "",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "title": "ConsumerRequest",
                "type": "object",
                "properties": {
                  "consumer": {
                    "required": [
                      "email"
                    ],
                    "type": "object",
                    "title": "ConsumerProperties",
                    "properties": {
                      "birthday": {
                        "type": "string"
                      },
                      "braintree_id": {
                        "description": "Unique ID assigned to the consumer in Braintree",
                        "type": "string"
                      },
                      "custom": {
                        "type": "string",
                        "description": "Custom attributes for the consumer (Example: `consumer[custom][weight]=100`)"
                      },
                      "email": {
                        "type": "string"
                      },
                      "name": {
                        "description": "Consumer full name",
                        "type": "string"
                      },
                      "parental_access_code": {
                        "description": "The four digit code to use for gating of age restricted content in apps.",
                        "type": "string"
                      },
                      "parental_access_rating": {
                        "type": "string"
                      },
                      "password": {
                        "type": "string",
                        "description": "The password for the consumer. The password is used for consumer authentication"
                      },
                      "password_confirmation": {
                        "type": "string",
                        "description": "password_confirmation must match password"
                      },
                      "password_token": {
                        "description": "The password token to use during password reset workflows",
                        "type": "string"
                      },
                      "recurly_code": {
                        "description": "Unique ID ('Code' in Recurly) assigned to the consumer in Recurly",
                        "type": "string"
                      },
                      "remember_token": {
                        "description": "The password token to use during remember login workflows",
                        "type": "string"
                      },
                      "rss_token": {
                        "description": "Unique token to identify a customer accessing your RSS feed",
                        "type": "string"
                      },
                      "sex": {
                        "type": "string"
                      },
                      "stripe_id": {
                        "description": "Unique ID assigned to the consumer in Stripe",
                        "type": "string"
                      },
                      "super_watcher": {
                        "description": "Boolean field to indicate that a consumer is exempt from content rules",
                        "type": "boolean"
                      },
                      "terms": {
                        "description": "If consumer has agreed to the terms and services",
                        "type": "boolean"
                      },
                      "updates": {
                        "description": "If the consumer has agreed to receive updates",
                        "type": "boolean"
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "responses": {
          "201": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "title": "ConsumerResponse",
                  "type": "object",
                  "properties": {
                    "response": {
                      "title": "Consumer",
                      "type": "object",
                      "properties": {
                        "_id": {
                          "type": "string"
                        },
                        "amazon_user_id": {
                          "description": "Unique ID to identify a consumer by Amazon Fire",
                          "type": "string"
                        },
                        "birthday": {
                          "type": "string"
                        },
                        "braintree_id": {
                          "type": "string"
                        },
                        "created_at": {
                          "type": "string"
                        },
                        "current_sign_in_at": {
                          "type": "string"
                        },
                        "current_sign_in_ip": {
                          "type": "string"
                        },
                        "days_trialed": {
                          "type": "number"
                        },
                        "email": {
                          "type": "string"
                        },
                        "has_trialed": {
                          "type": "boolean"
                        },
                        "last_sign_in_at": {
                          "type": "string"
                        },
                        "last_sign_in_ip": {
                          "type": "string"
                        },
                        "linked_devices": {
                          "description": "IDs of Devices a user uses to watch your videos",
                          "type": "object"
                        },
                        "name": {
                          "type": "string"
                        },
                        "parental_access_code": {
                          "description": "The four digit code to use for gating of age restricted content in apps.",
                          "type": "string"
                        },
                        "parental_access_rating": {
                          "type": "string"
                        },
                        "pass_count": {
                          "description": "Number of passes a consumer has",
                          "type": "number"
                        },
                        "password_token": {
                          "type": "string"
                        },
                        "playist_count": {
                          "type": "number"
                        },
                        "recurly_code": {
                          "type": "string"
                        },
                        "remember_token": {
                          "type": "string"
                        },
                        "rss_token": {
                          "type": "string"
                        },
                        "sex": {
                          "type": "string"
                        },
                        "sign_in_count": {
                          "type": "number"
                        },
                        "site_id": {
                          "type": "string"
                        },
                        "stripe_id": {
                          "type": "string"
                        },
                        "subscription_count": {
                          "description": "Number of subscriptions a consumer has",
                          "type": "number"
                        },
                        "terms": {
                          "type": "boolean"
                        },
                        "transaction_count": {
                          "description": "Number of transactions a consumer has",
                          "type": "number"
                        },
                        "updated_at": {
                          "type": "string"
                        },
                        "updates": {
                          "type": "boolean"
                        },
                        "video_count": {
                          "description": "Number of videos a consumer has access to",
                          "type": "number"
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable entity",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1consumers/get/responses/422/content/application~1json/schema"
                }
              }
            }
          }
        }
      }
    },
    "/consumers/{id}": {
      "get": {
        "summary": "View Consumer",
        "tags": [
          "Consumers"
        ],
        "operationId": "getConsumer",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Consumer ID"
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1consumers/post/responses/201/content/application~1json/schema"
                }
              }
            }
          },
          "404": {
            "description": "Consumer not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1pin~1link/put/responses/404/content/application~1json/schema"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "Update Consumer",
        "tags": [
          "Consumers"
        ],
        "operationId": "updateConsumer",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Consumer ID"
          }
        ],
        "requestBody": {
          "description": "",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/paths/~1consumers/post/requestBody/content/application~1json/schema"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1consumers/post/responses/201/content/application~1json/schema"
                }
              }
            }
          },
          "404": {
            "description": "Consumer not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1pin~1link/put/responses/404/content/application~1json/schema"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable entity",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1consumers/get/responses/422/content/application~1json/schema"
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "Delete Consumer",
        "tags": [
          "Consumers"
        ],
        "operationId": "deleteConsumer",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Consumer ID"
          }
        ],
        "responses": {
          "204": {
            "description": "Consumer deleted successfully",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1consumers/post/responses/201/content/application~1json/schema"
                }
              }
            }
          },
          "404": {
            "description": "Consumer not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1pin~1link/put/responses/404/content/application~1json/schema"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable entity",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1consumers/get/responses/422/content/application~1json/schema"
                }
              }
            }
          }
        }
      }
    },
    "/pin/status": {
      "get": {
        "summary": "Retrieve Device Pin",
        "description": "",
        "tags": [
          "Device Linking"
        ],
        "operationId": "getPinStatus",
        "parameters": [
          {
            "name": "linked_device_id",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Unique ID of the user's device"
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1pin~1link/put/responses/200/content/application~1json/schema"
                }
              }
            }
          },
          "404": {
            "description": "Device Pin not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1pin~1link/put/responses/404/content/application~1json/schema"
                }
              }
            }
          }
        }
      }
    },
    "/pin/acquire": {
      "post": {
        "summary": "Acquire Device Pin",
        "description": "",
        "tags": [
          "Device Linking"
        ],
        "operationId": "acquireDevicePin",
        "parameters": [
          {
            "name": "linked_device_id",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Unique ID of the user's device"
          }
        ],
        "responses": {
          "201": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1pin~1link/put/responses/200/content/application~1json/schema"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable entity",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1consumers/get/responses/422/content/application~1json/schema"
                }
              }
            }
          }
        }
      }
    },
    "/pin/link": {
      "put": {
        "summary": "Link Device Pin",
        "description": "",
        "tags": [
          "Device Linking"
        ],
        "operationId": "linkDevicePin",
        "parameters": [
          {
            "name": "consumer_id",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "ID of consumer to link device to"
          },
          {
            "name": "pin",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "The value for the acquired device pin"
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "title": "DevicePinResponse",
                  "type": "object",
                  "properties": {
                    "response": {
                      "title": "DevicePin",
                      "type": "object",
                      "properties": {
                        "_id": {
                          "type": "string"
                        },
                        "consumer_id": {
                          "description": "",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "",
                          "type": "string"
                        },
                        "deleted_at": {
                          "description": "",
                          "type": "string"
                        },
                        "linked_device_id": {
                          "description": "",
                          "type": "string"
                        },
                        "pin": {
                          "description": "",
                          "type": "string"
                        },
                        "pin_expiration": {
                          "description": "",
                          "type": "string"
                        },
                        "updated_at": {
                          "description": "",
                          "type": "string"
                        },
                        "linked true": {
                          "description": "",
                          "type": "boolean"
                        },
                        "subscription_count": {
                          "description": "",
                          "type": "number"
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Device Pin not found",
            "content": {
              "application/json": {
                "schema": {
                  "title": "NotFound",
                  "type": "object",
                  "required": [
                    "message"
                  ],
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/pin/unlink": {
      "put": {
        "summary": "Unlink Device Pin",
        "description": "",
        "tags": [
          "Device Linking"
        ],
        "operationId": "unlinkDevicePin",
        "parameters": [
          {
            "name": "consumer_id",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "ID of consumer to link device to"
          },
          {
            "name": "pin",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "The value for the acquired device pin"
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1pin~1link/put/responses/200/content/application~1json/schema"
                }
              }
            }
          },
          "404": {
            "description": "Device Pin not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1pin~1link/put/responses/404/content/application~1json/schema"
                }
              }
            }
          }
        }
      }
    },
    "/videos/{video_id}/entitled": {
      "get": {
        "tags": [
          "Video Entitlements"
        ],
        "summary": "Check Video Entitlement",
        "description": "Check Video Entitlement",
        "operationId": "checkVideoEntitlement",
        "parameters": [
          {
            "name": "video_id",
            "in": "path",
            "description": "ID of the video entitlement",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "access_token",
            "in": "query",
            "description": "OAuth token of a consumer",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "title": "CheckVideoEntitlementResponse",
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "422": {
            "description": "Consumer does not have access",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1consumers/get/responses/422/content/application~1json/schema"
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/consumers/{consumer_id}/videos": {
      "get": {
        "summary": "List Video Entitlements",
        "description": "",
        "tags": [
          "Video Entitlements"
        ],
        "operationId": "listVideoEntitlements",

# --- truncated at 32 KB (60 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/zype/refs/heads/main/openapi/zype-consumers.json