openapi: 3.2.0 info: title: Splio Reward API version: 1.0.0 description: 'Operations tagged Reward across 2 of this provider''s published API definitions: splio-doc-swagger2.json, splio-customer-platform-openapi.json. Each path carries the servers of the definition it was published in.' servers: - url: https://api.splio.com - url: http://api.splio.com tags: - name: Reward paths: /loyalty/v2/contacts/{id}/rewards: get: summary: List a contact’s rewards (granted & used) description: Get the list of a contact's reward (granted & used) parameters: - name: id in: path required: true description: Contact's unique key. schema: type: string - name: limit in: query required: false description: Number of items displayed. schema: type: integer default: 50 maximum: 1000 minimum: 1 - name: before in: query required: false description: Display elements before cursor X. schema: type: string - name: after in: query required: false description: Display elements after cursor X. schema: type: string - name: card_code in: query required: false description: 'Allows search on card_code property. Operators: equals, not equals, contains, begins, ends' schema: type: string - name: program_name in: query required: false description: 'Allows search on program_name property. Operators: equals, not equals, contains, begins, ends.' schema: type: string - name: with_custom_fields in: query required: false description: Add custom fileds from master reward to each reward attribution schema: type: boolean responses: '200': description: List of a contact’s rewards content: application/json: example: paging: cursors: after: null before: null previous: '' next: '' count_element: 1 elements: - external_id: EG28 loyalty_status_id: 47 card_code: '1674075318835' program_name: Flying blue individual_id: 3028687 earned_date: '2020-09-03 17:24:02' status: valid burned_date: null expiration_date: null interaction_details: Attribution of the reward interaction_type: reward_attribution reason_msg: Store visit while event reason_rule_id: id of the rule that trigger the reward reward_definition: name: the 4th given external_id: E2 monetary: true monetary_type: value monetary_value: 0 nqp_value: 0 image_url: '' '404': description: Contact not found. content: application/json: example: status: 404 errors: - error_key: id error: wrong_value error_description: Record not found for id unique_key. '400': description: The request validation failed. x-readme: BODYBODY content: application/json: example: status: 400 errors: - error_key: field_1 error: wrong_value error_description: The request was malformed and it is unable to be processed. Please review and try again. '401': description: Authentication failed. '403': description: Forbidden. tags: - Reward security: - Bearer: [] servers: - url: https://api.splio.com - url: http://api.splio.com /loyalty/v1/rewards: post: summary: Create a reward description: Create a new reward that can be given to members. responses: '201': description: Reward creation is successful. content: application/json: example: name: the 4th given external_id: E2 monetary: false monetary_type: '' monetary_value: 0 nqp_value: 4 description: An incredible cake rich_description: '' image_url: '' holding_days: 10 validity_interval_type: months validity_interval_count: 1 forced_validity: true forced_validity_start: '2020-06-01 00:00:00' forced_validity_end: '2020-09-01 00:00:00' limited: true auto_generated: true max_attribution_count: 87 custom_fields: - name: code_1 id: 0 value: test 2 '400': description: The request validation failed. x-readme: BODYBODY content: application/json: example: status: 400 errors: - error_key: field_1 error: wrong_value error_description: The request was malformed and it is unable to be processed. Please review and try again. '401': description: Authentication failed. '403': description: Forbidden. tags: - Reward security: - Bearer: [] requestBody: content: application/json: schema: required: - external_id - type - name - nqp_value - holding_days properties: auto_generated: example: false type: boolean default: false custom_fields: items: $ref: '#/components/schemas/CustomField' type: array description: example: Description type: string external_id: example: ExternalID type: string maxLength: 128 forced_validity: example: false type: boolean default: false forced_validity_end: example: '2018-01-12 15:34:22' type: string pattern: ^\d\d\d\d-(0?[1-9]|1[0-2])-(0?[1-9]|[12][0-9]|3[01]) (00|[0-9]|1[0-9]|2[0-3]):([0-9]|[0-5][0-9]):([0-9]|[0-5][0-9])$ forced_validity_start: example: '2018-01-12 15:34:22' type: string pattern: ^\d\d\d\d-(0?[1-9]|1[0-2])-(0?[1-9]|[12][0-9]|3[01]) (00|[0-9]|1[0-9]|2[0-3]):([0-9]|[0-5][0-9]):([0-9]|[0-5][0-9])$ holding_days: example: 10 type: integer image_url: example: https://your_image.png type: string limited: example: false type: boolean default: false max_attribution_count: example: 10 type: string monetary: example: false type: boolean default: false monetary_type: example: percentage type: string enum: - percentage - value monetary_value: description: Value of the reward (in percentage or currency) example: 5.5 type: number name: example: Name type: string maxLength: 128 nqp_value: description: Non qualifying points price of the reward. example: 1 type: integer rich_description: example: Rich description type: string validity_interval_count: example: 10 type: integer validity_interval_type: example: days type: string enum: - days - weeks - months - years type: object description: Create a reward. required: true servers: - url: https://api.splio.com - url: http://api.splio.com /loyalty/v1/rewards/{id}: get: summary: Get a reward description: Get the data of a created reward. parameters: - name: id in: path required: true description: Reward external identifier. schema: type: string responses: '200': description: Reward retrieval is successful. content: application/json: example: name: the 4th given external_id: E2 monetary: false monetary_type: '' monetary_value: 0 nqp_value: 4 description: An incredible cake rich_description: '' image_url: '' holding_days: 10 validity_interval_type: months validity_interval_count: 1 forced_validity: true forced_validity_start: '2020-06-01 00:00:00' forced_validity_end: '2020-09-01 00:00:00' limited: true auto_generated: true max_attribution_count: 87 stock: 1087 custom_fields: - name: code_1 id: 0 value: test 2 '404': description: Reward not found. content: application/json: example: status: 404 errors: - error_key: '' error: '' error_description: E24444 not found '400': description: The request validation failed. x-readme: BODYBODY content: application/json: example: status: 400 errors: - error_key: field_1 error: wrong_value error_description: The request was malformed and it is unable to be processed. Please review and try again. '401': description: Authentication failed. '403': description: Forbidden. tags: - Reward security: - Bearer: [] patch: summary: Update a reward description: Edit the data of an existing reward. All new granted rewards will inherit of the updated data. parameters: - name: id in: path required: true description: Reward external identifier. schema: type: string responses: '200': description: Reward has successfully been updated. content: application/json: example: name: the 4th given external_id: E2 monetary: false monetary_type: '' monetary_value: 0 nqp_value: 4 description: An incredible cake rich_description: '' image_url: '' holding_days: 10 validity_interval_type: months validity_interval_count: 1 forced_validity: true forced_validity_start: '2020-06-01 00:00:00' forced_validity_end: '2020-09-01 00:00:00' limited: true auto_generated: true max_attribution_count: 1087 custom_fields: - name: code_1 id: 0 value: test 2 '404': description: Reward not found. content: application/json: example: status: 404 errors: - error_key: reward_id error: wrong_value error_description: Reward not found for given identifier. '400': description: The request validation failed. x-readme: BODYBODY content: application/json: example: status: 400 errors: - error_key: field_1 error: wrong_value error_description: The request was malformed and it is unable to be processed. Please review and try again. '401': description: Authentication failed. '403': description: Forbidden. tags: - Reward security: - Bearer: [] requestBody: content: application/json: schema: properties: name: example: Nom type: string maxLength: 128 description: example: Description type: string rich_description: example: Rich description type: string image_url: example: /path/to/picture type: string external_id: example: reward_ext_id_12 type: string forced_validity: example: true type: boolean forced_valitidy_end: example: '2024-08-27 17:19:00' type: string forced_validity_start: example: '2024-08-27 17:19:00' type: string holding_days: example: 0 type: integer max_attribution_count: example: 1000 type: integer monetary: example: true type: boolean monetary_type: example: percentage | value type: string monetary_value: example: 0 type: number nqp_value: example: 12 type: integer valitidy_interval_count: example: 1 type: integer validity_interval_type: example: days;weeks;months;years type: string custom_fields: items: $ref: '#/components/schemas/CustomField' type: array type: object description: Edit a reward. required: true servers: - url: https://api.splio.com - url: http://api.splio.com /loyalty/v1/rewards/{id}/attributions: get: summary: List granted rewards by reward ID description: Get the list of all granted reward for a specific reward (using it's ID). parameters: - name: id in: path required: true description: Reward external identifier. schema: type: string responses: '200': description: Get granted reward list content: application/json: example: paging: cursors: after: null before: null previous: '' next: '' count_element: 1 elements: - external_id: EG28 loyalty_status_id: 0 earned_date: '2018-03-19 16:51:25' status: valid burned_date: null store_id: null expiration_date: '2099-04-19 16:51:25' reward_definition: name: the 4th given external_id: E2 monetary: false monetary_type: '' monetary_value: 0 nqp_value: 4 image_url: '' '404': description: Reward not found. content: application/json: example: status: 404 errors: - error_key: reward_id error: wrong_value error_description: Reward not found for given identifier. '400': description: The request validation failed. x-readme: BODYBODY content: application/json: example: status: 400 errors: - error_key: field_1 error: wrong_value error_description: The request was malformed and it is unable to be processed. Please review and try again. '401': description: Authentication failed. '403': description: Forbidden. tags: - Reward security: - Bearer: [] servers: - url: https://api.splio.com - url: http://api.splio.com /loyalty/v2/rewards: get: summary: List rewards description: Get the list of created rewards. parameters: - name: limit in: query required: false description: Number of items displayed. schema: type: integer default: 50 maximum: 1000 minimum: 1 - name: order in: query required: false description: display result asc or desc schema: type: string default: desc - name: sort in: query required: false description: display result sorting by a result field (nqp_value is the only allowed field) schema: type: string - name: before in: query required: false description: Display elements before cursor X. schema: type: string - name: after in: query required: false description: Display elements after cursor X. schema: type: string - name: name in: query required: false description: 'allows search on name property. Operators: equals, not equals, contains, begins, ends' schema: type: string - name: external_id in: query required: false description: 'allows search on external_id property. Operators: equals, not equals, contains, begins, ends' schema: type: string - name: monetary in: query required: false description: 'allows search on monetary property. Operators: equals, not equals' schema: type: string - name: monetary_type in: query required: false description: 'allows search on monetary_type property. Operators: equals, not equals, contains, begins, ends' schema: type: string - name: monetary_value in: query required: false description: 'allows search on monetary_value property. Operators: equals, not equals, gt, gte, lt, lte' schema: type: string - name: nqp_value in: query required: false description: 'allows search on nqp_value property. Operators: equals, not equals, gt, gte, lt, lte' schema: type: string - name: description in: query required: false description: 'allows search on description property. Operators: equals, not equals, contains, begins, ends' schema: type: string - name: rich_description in: query required: false description: 'allows search on rich_description property. Operators: equals, not equals, contains, begins, ends' schema: type: string - name: image_url in: query required: false description: 'allows search on image_url property. Operators: equals, not equals, contains, begins, ends' schema: type: string - name: holding_days in: query required: false description: 'allows search on holding_days property. Operators: equals, not equals, gt, gte, lt, lte' schema: type: string - name: validity_interval_type in: query required: false description: 'allows search on validity_interval_type property. Operators: equals, not equals, contains, begins, ends' schema: type: string - name: validity_interval_count in: query required: false description: 'allows search on validity_interval_count property. Operators: equals, not equals, gt, gte, lt, lte' schema: type: string - name: forced_validity in: query required: false description: 'allows search on forced_validity property. Operators: equals, not equals' schema: type: string - name: forced_validity_start in: query required: false description: 'allows search on forced_validity_start property. Operators: equals, not equals, gt, gte, lt, lte' schema: type: string - name: forced_validity_end in: query required: false description: 'allows search on forced_validity_end property. Operators: equals, not equals, gt, gte, lt, lte' schema: type: string - name: limited in: query required: false description: 'allows search on limited property. Operators: equals, not equals' schema: type: string - name: auto_generated in: query required: false description: 'allows search on auto_generated property. Operators: equals, not equals' schema: type: string - name: max_attribution_count in: query required: false description: 'allows search on max_attribution_count property. Operators: equals, not equals, gt, gte, lt, lte' schema: type: string - name: c0 in: query required: false description: 'This is filter to apply to request. c0 is an exemple but how can use all custom field by name or id. Payload has give value and comparaison operator: c0={value: 12, operator: lte}. Operator depend on your filed type (text, number, date)' schema: type: string responses: '200': description: Rewards retrieval is successful. content: application/json: example: paging: cursors: after: null before: null previous: '' next: '' count_element: 1 elements: - auto_generated: true custom_fields: - id: 0 name: string value: string description: string external_id: string forced_validity: true forced_validity_end: '1970-01-01 00:00:00' forced_validity_start: '1970-01-01 00:00:00' holding_days: 0 image_url: string limited: true max_attribution_count: 0 stock: 50 monetary: true monetary_type: percentage,value monetary_value: 0 name: string nqp_value: 0 rich_description: string use_internal_id: true validity_interval_count: 0 validity_interval_type: days,weeks,months,years '400': description: The request validation failed. x-readme: BODYBODY content: application/json: example: status: 400 errors: - error_key: field_1 error: wrong_value error_description: The request was malformed and it is unable to be processed. Please review and try again. '401': description: Authentication failed. '403': description: Forbidden. tags: - Reward security: - Bearer: [] servers: - url: https://api.splio.com - url: http://api.splio.com /loyalty/rewards/eligibility/{card_code}: post: summary: Get a member’s eligible rewards description: Get the list of the available rewards depending on various parameters. parameters: - name: card_code in: path required: true description: Individual fidelity card code. schema: type: string - name: c0 in: query required: false description: 'This is filter to apply to request. c0 is an exemple but how can use all custom field by name or id. Payload has give value and comparaison operator: c0={value: 12, operator: lte}' schema: type: string responses: '200': description: Rewards retrieval is successful. content: application/json: example: paging: cursors: after: null before: null previous: '' next: '' count_element: 1 elements: - auto_generated: true custom_fields: - id: 0 name: string value: string description: string external_id: string forced_validity: true forced_validity_end: '1970-01-01 00:00:00' forced_validity_start: '1970-01-01 00:00:00' holding_days: 0 image_url: string limited: true max_attribution_count: 0 stock: 0 monetary: true monetary_type: percentage,value monetary_value: 0 name: string nqp_value: 0 rich_description: string use_internal_id: true validity_interval_count: 0 validity_interval_type: days,weeks,months,years '400': description: The request validation failed. x-readme: BODYBODY content: application/json: example: status: 400 errors: - error_key: field_1 error: wrong_value error_description: The request was malformed and it is unable to be processed. Please review and try again. '401': description: Authentication failed. '403': description: Forbidden. tags: - Reward security: - Bearer: [] servers: - url: https://api.splio.com - url: http://api.splio.com /loyalty/v1/rewards/{id}/grant: post: summary: Grant a reward description: Grant a reward to a member that he can use. parameters: - name: id in: path required: true description: Reward external identifier. schema: type: string responses: '200': description: Reward grant is successful. content: application/json: example: - uuid: 7061f345-d70f-4e7f-a803-8aa226b2d914 external_ids: - '978020137962' - '123456789012' '404': description: Reward not found. content: application/json: example: status: 404 errors: - error_key: reward_id error: wrong_value error_description: Reward not found for given identifier. '400': description: The request validation failed. x-readme: BODYBODY content: application/json: example: status: 400 errors: - error_key: field_1 error: wrong_value error_description: The request was malformed and it is unable to be processed. Please review and try again. '401': description: Authentication failed. '403': description: Forbidden. tags: - Reward security: - Bearer: [] requestBody: content: application/json: schema: required: - card_code properties: card_code: example: '44010000002' type: string quantity: example: 2 type: integer default: 1 reason_msg: example: Catching up summer's free cake offer. type: string grant_date: example: '2018-01-12 15:00:00' type: string pattern: ^\d\d\d\d-(0?[1-9]|1[0-2])-(0?[1-9]|[12][0-9]|3[01]) (00|[0-9]|1[0-9]|2[0-3]):([0-9]|[0-5][0-9]):([0-9]|[0-5][0-9])$ burned_date: example: '2018-01-12 15:00:00' type: string pattern: ^\d\d\d\d-(0?[1-9]|1[0-2])-(0?[1-9]|[12][0-9]|3[01]) (00|[0-9]|1[0-9]|2[0-3]):([0-9]|[0-5][0-9]):([0-9]|[0-5][0-9])$ validity_start: example: '2018-01-12 15:00:00' type: string pattern: ^\d\d\d\d-(0?[1-9]|1[0-2])-(0?[1-9]|[12][0-9]|3[01]) (00|[0-9]|1[0-9]|2[0-3]):([0-9]|[0-5][0-9]):([0-9]|[0-5][0-9])$ validity_end: example: '2019-01-12 15:00:00' type: string pattern: ^\d\d\d\d-(0?[1-9]|1[0-2])-(0?[1-9]|[12][0-9]|3[01]) (00|[0-9]|1[0-9]|2[0-3]):([0-9]|[0-5][0-9]):([0-9]|[0-5][0-9])$ store_id: example: store01 type: string attribution_ids: example: - reward_attribution_id_1 - reward_attribution_id_2 items: type: string type: array idempotency_key: example: 733d3ebf-36fe-41f4-8468-c463202225c1 type: string type: object description: Grant a reward to a loyalty member based on its card code. required: true servers: - url: https://api.splio.com - url: http://api.splio.com /loyalty/v1/rewards/grant: post: summary: Grant a list of reward description: Grant a list of reward responses: '200': description: Reward grant is successful. content: application/json: example: - external_id: '978020137962' card_code: '44010000002' program_name: My program earned_date: '2019-12-31 23:59:59' status: burned burned_date: '2020-12-24 23:59:59' expiration_date: '2020-12-31 23:59:59' interaction_details: Attribution of the reward interaction_type: reward_attribution reason_msg: Social message reward_definition: name: 'Reward #1' external_id: REWARD01 monetary: true monetary_type: value monetary_value: 0 nqp_value: 0 image_url: https://www.splio.com/wp-content/uploads/2018/01/3250_Splio_Logo_RGB.png '400': description: All grants failed. content: application/json: example: success_count: 0 errors_count: 1 elements_success: [] elements_error: - attribution_ids: - '19028198201' reward_id: Unlimitedauto card_code: '3503381382743' code: 400 description: external id test5002 is already attributed '207': description: Partial successes. content: application/json: example: success_count: 1 errors_count: 1 elements_success: - external_id: test5008 card_code: '3503381382743' program_name: Corgi Club earned_date: '2020-11-19 16:00:00' status: valid burned_date: null expiration_date: '2021-11-19 16:00:00' store_id: extid interaction_details: Attribution of the reward interaction_type: reward_attribution reason_msg: '' reward_definition: name: Unlimited - Autogenerated external_id: Unlimitedauto monetary: true monetary_type: value monetary_value: 0 nqp_value: 0 image_url: '' elements_error: - attribution_ids: - '19028198201' reward_id: Unlimitedauto card_code: '3503381382743' code: 400 description: external id test5002 is already attributed '401': description: Authentication failed. '403': description: Forbidden. tags: - Reward security: - Bearer: [] requestBody: content: application/json: schema: properties: elements: items: required: - card_code properties: reward_id: example: REWARD1 type: string card_code: example: '44010000002' type: string quantity: example: 2 type: integer default: 1 reason_msg: example: Catching up summer's free cake offer. type: string grant_date: example: '2018-01-12 15:00:00' type: string pattern: ^\d\d\d\d-(0?[1-9]|1[0-2])-(0?[1-9]|[12][0-9]|3[01]) (00|[0-9]|1[0-9]|2[0-3]):([0-9]|[0-5][0-9]):([0-9]|[0-5][0-9])$ burned_date: example: '2018-01-12 15:00:00' type: string pattern: ^\d\d\d\d-(0?[1-9]|1[0-2])-(0?[1-9]|[12][0-9]|3[01]) (00|[0-9]|1[0-9]|2[0-3]):([0-9]|[0-5][0-9]):([0-9]|[0-5][0-9])$ validity_start: example: '2018-01-12 15:00:00' type: string pattern: ^\d\d\d\d-(0?[1-9]|1[0-2])-(0?[1-9]|[12][0-9]|3[01]) (00|[0-9]|1[0-9]|2[0-3]):([0-9]|[0-5][0-9]):([0-9]|[0-5][0-9])$ validity_end: example: '2019-01-12 15:00:00' type: string pattern: ^\d\d\d\d-(0?[1-9]|1[0-2])-(0?[1-9]|[12][0-9]|3[01]) (00|[0-9]|1[0-9]|2[0-3]):([0-9]|[0-5][0-9]):([0-9]|[0-5][0-9])$ store_id: example: store01 type: string attribution_ids: example: - reward_attribution_id_1 - reward_attribution_id_2 items: type: string type: array type: object type: array type: object description: Grant a list of reward based on card code and granted reward external identifier. required: true servers: - url: https://api.splio.com - url: http://api.splio.com /loyalty/v1/reward-attributions/{id}/burn: post: summary: Use a reward granted to a loyalty member. description: Use a reward granted to a loyalty member. parameters: - name: id in: path required: true description: Reward grant unique external identifier. schema: type: string responses: '200': description: Reward use is successful. content: application/json: example: external_id: '1006087183901' card_code: '8393566595977' program_name: Corgi club earned_date: '2021-02-19 18:00:54' status: burned burned_date: '2021-03-10 17:43:38' expiration_date: '2022-02-19 18:00:54' store_id: null interaction_details: Attribution of the reward interaction_type: reward_attribution reason_msg: '' reward_definition: name: RewardStock1 external_id: RewardStock1 monetary: false monetary_type: value monetary_value: 0 nqp_value: 0 image_url: '' '404': description: Granted reward with this identifier not found. content: application/json: example: status: 404 errors: - error_key: id error: wrong_value error_description: Reward attribution not found for given identifier. '400': description: The request validation failed. x-readme: BODYBODY content: application/json: example: status: 400 errors: - error_key: field_1 error: wrong_value error_description: The request was malformed and it is unable to be processed. Please review and try again. '401': description: Authentication failed. '403': description: Forbidden. tags: - Reward security: - Bearer: [] requestBody: content: application/json: schema: properties: card_code: description: Use this if you have loyalty feature. example: '44010000002' type: string contact_id: description: Use this if you have the new couponing feature. example: '13465' type: string reason_msg: example: Catching up summer's free cake offer. type: string burned_date: example: '2018-01-12 15:00:00' type: string pattern: ^\d\d\d\d-(0?[1-9]|1[0-2])-(0?[1-9]|[12][0-9]|3[01]) (00|[0-9]|1[0-9]|2[0-3]):([0-9]|[0-5][0-9]):([0-9]|[0-5][0-9])$ store_id: example: store01 type: string type: object description: Use a reward granted to a loyalty member. required: true servers: - url: https://api.splio.com - url: http://api.splio.com /loyalty/v1/rewards/burn: post: summary: Use a list of granted rewards description: Use a list of granted rewards responses: '200': description: All granted rewards are successfully used. content: application/json: example: - external_id: '978020137962' card_code: '44010000002' program_name: My program earned_date: '2019-12-31 23:59:59' status: burned burned_date: '2020-12-24 23:59:59' expiration_date: '2020-12-31 23:59:59' interaction_details: Attribution of the reward interaction_type: reward_attribution reason_msg: Social message reward_definition: name: 'Reward #1' external_id: REWARD01 monetary: true monetary_type: value monetary_value: 0 nqp_value: 0 image_url: https://www.splio.com/wp-content/uploads/2018/01/3250_Splio_Logo_RGB.png '400': description: Can't perform this request content: application/json: example: success_count: 0 errors_count: 1 elements_success: null elements_error: - attribution_id: xxxxxxx4 card_code: '3503381382743' code: 400 description: reward_attribution xxxxxxx4 not found '207': description: Partial successes. content: application/json: example: success_count: 1 errors_count: 1 elements_success: - external_id: test5008 card_code: '3503381382743' program_name: Corgi Club earned_date: '2020-11-19 16:00:00' status: valid burned_date: '2021-11-05 16:00:00' expiration_date: '2021-11-19 16:00:00' store_id: extid interaction_details: Attribution of the reward interaction_type: reward_attribution reason_msg: '' reward_definition: name: Unlimited - Autogenerated external_id: Unlimitedauto monetary: true monetary_type: value monetary_value: 0 nqp_value: 0 image_url: '' elements_error: - reward_id: Unlimitedauto card_code: '3503381382743' code: 400 description: external id test5002 is already attributed '401': description: Authentication failed. '403': description: Forbidden. tags: - Reward security: - Bearer: [] requestBody: content: application/json: schema: properties: elements: items: required: - card_code properties: card_code: example: '44010000002' type: string reason_msg: example: Catching up summer's free cake offer. type: string burned_date: example: '2018-01-12 15:00:00' type: string pattern: ^\d\d\d\d-(0?[1-9]|1[0-2])-(0?[1-9]|[12][0-9]|3[01]) (00|[0-9]|1[0-9]|2[0-3]):([0-9]|[0-5][0-9]):([0-9]|[0-5][0-9])$ store_id: example: store01 type: string attribution_ids: example: - reward_attribution_id_1 - reward_attribution_id_2 items: type: string type: array type: object type: array type: object description: Use a list of granted rewards required: true servers: - url: https://api.splio.com - url: http://api.splio.com /loyalty/reward-attributions/{id}: get: summary: Get a granted reward description: Get more information on a specific grant, can also be used to check if the granted reward exists parameters: - name: id in: path required: true description: Reward attribution external identifier. schema: type: string responses: '200': description: Reward attribution retrieval is successful. content: application/json: example: id: 6 external_id: EG28 earn_date: '2018-03-19 16:51:25' claim_date: null expiration_date: '2022-04-19 16:51:25' status: available reward: id: 1 external_id: E2 type: cake name: the 4th given price: 6 nqp_value: 4 description: An incredible cake holding_days: 0 validity_interval_type: months validity_interval_count: 1 max_attribution_count: 88 coupons_category: '' forced_validity: true forced_validity_start: '2018-01-18 16:00:28' forced_validity_end: '2019-01-18 16:00:28' picture_path: /path/to/picture monetary_type: discount monetary_value: 10.5 program: null custom_fields: [] contact_status: id: 1 card_code: '33010000001' tier_joined_at: null program_joined_at: '2018-01-18 16:03:42' card_expire_at: null computed_at: null q_point: 0 nq_point: 10 birthday: null individual: null program: null tier: [] coupon: null event: null store: null '404': description: Reward attribution not found. content: application/json: example: status: 404 errors: - error_key: ext_id error: wrong_value error_description: Reward attribution not found for given identifier. '400': description: The request validation failed. x-readme: BODYBODY content: application/json: example: status: 400 errors: - error_key: field_1 error: wrong_value error_description: The request was malformed and it is unable to be processed. Please review and try again. '401': description: Authentication failed. '403': description: Forbidden. tags: - Reward security: - Bearer: [] servers: - url: https://api.splio.com - url: http://api.splio.com components: schemas: CustomField: properties: name: required: true type: string value: required: true type: string type: object CustomField_2: properties: name: type: string value: type: string type: object securitySchemes: Bearer: name: Authorization type: apiKey in: header description: "For accessing the API a valid JWT token must be passed in all requests in\nthe 'Authorization' header.\n\n\nA valid JWT token is generated by the Authorization API and returned as answer of a call\nto the route /authenticate giving a valid user, password & universe.\n\n\nThe following syntax must be used in the 'Authorization' header :\n\n Bearer xxxxxx.yyyyyyy.zzzzzz\n" x-refined-from: - splio-doc-swagger2.json - splio-customer-platform-openapi.json