> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zype.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Consumers

# OpenAPI definition

```json
{
  "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"
      }
    }
  },
  "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: ‘.gt’, ‘.gte’, ‘.lt’, ‘lte’ (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: ‘.gt’, ‘.gte’, ‘.lt’, ‘lte’ (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: ‘.gt’, ‘.gte’, ‘.lt’, ‘lte’ (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: ‘.gt’, ‘.gte’, ‘.lt’, ‘lte’ (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: ‘.gt’, ‘.gte’, ‘.lt’, ‘lte’ (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: ‘.gt’, ‘.gte’, ‘.lt’, ‘lte’ (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: ‘.gt’, ‘.gte’, ‘.lt’, ‘lte’ (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: ‘.gt’, ‘.gte’, ‘.lt’, ‘lte’ (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: ‘.gt’, ‘.gte’, ‘.lt’, ‘lte’ (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"
                }
              }
            }
          }
        }
      }
    }
  }
}
```