# Get list of offer chains Gets list of offer chains for administration. NoticeAll projects have a limit on to the number of items that can be returned in a single response. The default and maximum value is 10 items per response. To get more data, use the limit and offset query parameters for pagination. Endpoint: GET /v2/project/{project_id}/admin/offer_chain Version: 2.0.0 Security: basicAuth ## Path parameters: - `project_id` (integer, required) Project ID. You can find this parameter in your Publisher Account next to the name of the project. Example: 44056 ## Query parameters: - `limit` (integer) Limit for the number of elements on the page. Example: 50 - `offset` (integer) Number of the element from which the list is generated (the count starts from 0). - `enabled` (integer) Filter elements by is_enabled flag. ## Response 200 fields (application/json): - `has_more` (boolean) Used as an indicator that there are more pages. Example: true - `items` (array) - `items.id` (integer) Unique offer chain ID. Example: 9 - `items.name` (object,null) Object with localizations for item’s name. Accepts value in one of two formats: two-letter lowercase language codes (e.g., en) or five-character language codes (e.g., en-US). While both formats are accepted as input, responses return two-letter lowercase language codes. When both options for the same language are provided (e.g., en and en-US), the last provided value is stored. You can find the full list of supported languages in the [documentation](/doc/shop-builder/references/supported-languages/). - `items.order` (integer) Defines arrangement order. Example: 1 - `items.description` (object,null) Object with localizations for item’s description. Accepts value in one of two formats: two-letter lowercase language codes (e.g., en) or five-character locale codes (e.g., en-US). While both formats are accepted as input, responses return two-letter lowercase language codes. When both options for the same language are provided (e.g., en and en-US), the last provided value is stored. You can find the full list of supported languages in the [documentation](/doc/shop-builder/references/supported-languages/). - `items.date_start` (string) Date when the offer chain starts. Example: "2020-04-15T18:16:00+05:00" - `items.date_end` (string,null) Date when the offer chain ends. Can be null. If date_end is null, the offer chain will not have a time limit. Example: "2020-04-15T18:16:00+05:00" - `items.is_enabled` (boolean) Example: true - `items.recurrent_schedule` (object,null) Recurrent reset period of the offer chain. - `items.is_always_visible` (boolean) Whether the chain is visible to all users: * If true, the chain is always displayed, regardless of the user's authentication status or attributes. * If false, the chain is displayed only if no personalized chain is found. For example, if the user is not authenticated or their attributes don’t match any personalized chain. Applies only in the context of personalized chains and is used if the attribute_conditions array is not passed. Example: true - `items.attribute_conditions` (array) Conditions for validating user attributes. Determine chain availability based on whether user attributes match all specified conditions. ## Response 401 fields (application/json): - `statusCode` (integer) Example: 401 - `errorCode` (integer) Example: 1020 - `errorMessage` (string) Example: "[0401-1020]: Error in Authentication method occurred"