# Get current user's offer chains Gets the current user’s offer chains. NoticeAll projects have a limit on the number of items that can be returned in a single response. The default and maximum value is 30 items per response. To get more data, use the limit and offset query parameters for pagination. Endpoint: GET /v2/project/{project_id}/user/offer_chain Version: 2.0.0 Security: XsollaLoginUserJWT ## 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). ## Response 200 fields (application/json): - `has_more` (boolean) Indicates whether more pages are available. Example: true - `total_items_count` (integer) Total number of offer chains available. Example: 10 - `items` (array) - `items.id` (integer) Offer chain ID. Example: 9 - `items.name` (string) Offer chain name. Example: "Weekly quest" - `items.description` (string,null) Offer chain description. Example: "Major weekly quest" - `items.order` (integer) Defines arrangement order. Example: 1 - `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.steps` (array) - `items.steps.step_number` (integer) Step number. Example: 2 - `items.steps.is_free` (boolean) Indicates whether the offer chain step is free:If true, the step must be claimed using the Claim free offer chain step call.If false, it must be purchased using the Create order for paid offer chain step call. - `items.steps.is_claimed` (boolean) Indicates whether the step reward is claimed or purchased. - `items.steps.step_price` (object,null) - `items.steps.step_price.amount` (number, required) Step price in real currency. Example: 99.99 - `items.steps.step_price.currency` (string, required) Item price currency. Three-letter code per [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217). Example: "USD" - `items.steps.step_vp_rewards` (array,null) An array of value points from the reward system, granted as a reward. - `items.steps.step_vp_rewards.item_id` (integer) Internal unique item ID. Example: 1 - `items.steps.step_vp_rewards.sku` (string) Unique value point ID. - `items.steps.step_vp_rewards.amount` (integer) Amount of value points. - `items.steps.step_vp_rewards.name` (string) Value point name. - `items.steps.step_vp_rewards.image_url` (string) Image URL. Example: "https://image.example.com" - `items.steps.step_vp_rewards.is_clan` (boolean) Whether the value point is used in clan reward chains. Example: true - `items.steps.step_loyalty_rewards` (array,null) - `items.steps.step_loyalty_rewards.name` (string) Loyalty point name. Example: "First Loyalty Point" - `items.steps.step_loyalty_rewards.sku` (string) Loyalty point SKU. Example: "0c745ef0-4243-46e1-aa90-54dee07da622" - `items.steps.step_loyalty_rewards.description` (string) Loyalty point description. Example: "First Loyalty Point Desc" - `items.steps.step_loyalty_rewards.amount` (integer) Amount of loyalty points. Example: 1 - `items.recurrent_schedule` (object,null) Reset period of the offer chain. - `items.recurrent_schedule.interval_type` (string) Frequency of the offer chain reset. Enum: "weekly", "monthly", "hourly" - `items.recurrent_schedule.reset_next_date` (integer) The calculated date and time when the offer chain will be reset next time, in Unix Timestamp format. For example, the monthly offer chain reset starts on March 1, 2024, at 01:00 Kuala Lumpur time (GMT+8). The following reset occurs on April 1, 2024 at 01:00 Kuala Lumpur time (GMT+8), which corresponds to March 31, 2024 17:00 GMT+0 or 1711904400000 in the Unix Timestamp format. Example: 1711904400000 - `items.next_step_number` (integer,null) Next offer chain step number. null if the offer chain is completed. Example: 1