{"info":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","description":"<html><head></head><body><p>99minds Gift Card APIs are for developers who want to integrate their application with 99minds Gift Card platform. In this guide you'll learn about basic steps for getting started with 99minds Gift Card APIs, including:</p>\n<ol>\n<li><p>Sign up and create account on 99minds Gift Card platform.</p>\n</li>\n<li><p>Generating the required API credentials for API access</p>\n</li>\n<li><p>API tutorials for making API calls to 99minds Gift Card platform</p>\n</li>\n</ol>\n<p>Because the REST API is based on open standards, you can use any web development language to access our APIs.</p>\n<h1 id=\"authorization\">Authorization</h1>\n<p>99minds Gift Card platform uses <strong><code>Bearer Token</code></strong> authentication. <strong>Bearer authentication</strong> (also called <strong>token authentication</strong>) is an <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentication\">HTTP authentication scheme</a> that involves security tokens called bearer tokens. The client must send this token in the <code>Authorization</code> header when making requests to protected resources:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization:  Bearer  &lt;token&gt;\n\n</code></pre><h4 id=\"obtaining-api-credentials\">Obtaining API credentials</h4>\n<p>API keys can be obtained by creating an API application in the 99minds platform. Visit <code>Settings &gt; API</code> and click on <code>New Application</code>. Once you create a new application, you will be presented with the <code>Key ID</code> and <code>Key Secret</code>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Key ID</td>\n<td>To be used in client-based applications (like browsers using Javascript).</td>\n</tr>\n<tr>\n<td>Key Secret</td>\n<td>To be used in server-based applications.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"obtaining-store-details\">Obtaining store details</h4>\n<p>In addition to API keys, every <code>POST/PUT</code> method in 99minds requires either a <code>store_ref</code> or <code>client_store_id</code> in the request body.</p>\n<p>Stores on 99minds serve as a representation of each of your physical retail locations on the 99minds platform. For instance, if you have 10 retail stores and wish to track where gift card sales, redemptions, and other transactions occur, you should create 10 corresponding stores on 99minds (found under the Configure &gt; Stores menu) and obtain the associated <code>store_ref</code> or <code>client_store_id</code>. Each gift card transaction will then be linked to its respective store. However, this is not mandatory. You can opt to use a single store and consistently pass the same <code>store_ref</code>/<code>client_store_id</code> for all transactions, and that would work as well.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>store_ref</td>\n<td>Unique store ID generated by 99minds.</td>\n</tr>\n<tr>\n<td>client_store_id</td>\n<td>Unique store ID provided by merchant.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"response-format\">Response Format</h1>\n<p>All responses HTTP status code will always be <strong><code>200 OK</code></strong></p>\n<p>The <code>status</code> key inside the response will state the actual status of the response.</p>\n<p>The <code>code</code> key inside the response will state the actual error code of the response.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>Response body</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Any one of <code>OK</code>, <code>Unprocessable Entity</code>, <code>Not Found</code>, <code>Bad Request</code>, <code>Missing Parameter(s)</code>, <code>Forbidden</code>, <code>Unauthorized</code></td>\n</tr>\n<tr>\n<td>code</td>\n<td>Any one of <code>200</code>, <code>404</code>, <code>422</code>, <code>400</code>, <code>403</code>, <code>401</code></td>\n</tr>\n<tr>\n<td>message</td>\n<td>Display message</td>\n</tr>\n<tr>\n<td>errors</td>\n<td>List of errors by keys returned (if any)</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"pagination\">Pagination</h1>\n<p>Pagination is provided on all collection APIs.</p>\n<h2 id=\"option-1\">Option 1</h2>\n<p>When large data sets are returned, the results are paginated. In such cases, a pagination section is included in the response, along with the first page of data.returned in the result set. The first page of data will be returned in the response also.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"total_records\": 137,\n        \"total_pages\": 2,\n        \"current_page\": 2,\n        \"next_page\": null,\n        \"prev_page\": 1,\n        \"giftcards\": [\n            { ... },\n            { ... }\n            ... and 98 other giftcards\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}\n\n</code></pre>\n<h4 id=\"requesting-pages\">Requesting Pages</h4>\n<p>You can request a different page by passing a different <code>page</code> parameter like:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/api/v1/giftcards?page=23\n\n</code></pre><h4 id=\"page-size\">Page size</h4>\n<p>It is not possible to change the number of objects returned in the response. The default <code>page_size</code> is <code>100</code></p>\n<h2 id=\"option-2\">Option 2</h2>\n<p>Requesting subsequent pages is based on a resource specific cursor - an attribute called <code>version</code> which can be found on all collection resources. Here’s an example based on the <code>giftcard</code> resource:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"version\": 13560,\n  \"card_id\": \"card_f4e0071f9c3c67a811\",\n  \"batch_id\": null,\n  \"active\": true,\n  \"giftcard_number\": \"SK2670657708\",\n  \"original_value\": \"100.0\",\n  \"remaining_value\": \"100.0\",\n  \"expiration_date\": null,\n  \"campaign_name\": \"doboz\",\n  \"campaign_id\": \"campaign_93fb1d07453f5843d8\",\n  \"currency\": \"USD\",\n  \"created_at\": \"2021-10-11T11:36:21.000Z\"\n}\n\n</code></pre>\n<blockquote>\n<p><strong>NOTE:</strong> <em>The</em> <code>_version_</code> <em>attribute is simply a monotonically increasing integer. It is being incremented every time a resource is changed. This is a global parameter and it shouldn’t be assumed that subsequent versions of the same resource will be incremented by 1.</em> </p>\n</blockquote>\n<h4 id=\"first-page\">First page</h4>\n<p>By default, the value of the <code>min_id</code> parameter will be assumed as equal <code>0</code> so it’s not necessary to use it on the first page. For a request with no <code>min_id</code> parameter or <code>min_id=0</code>, the first page of products will be returned, even if a resource with <code>version = 0</code> may not exist in the given collection. The body of the response will contain <code>version</code> with the lowest and highest version number of resources included in the response.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": {\n    \"total_records\": 2156,\n    \"total_pages\": 22,\n    \"current_page\": 1,\n    \"next_page\": 2,\n    \"prev_page\": null,\n    \"version\": {\n      \"min\": 13427,\n      \"max\": 13560\n    },\n    \"giftcards\": [\n      { ... },\n      { ... }\n      ... and 98 other giftcards\n    ]\n  },\n  \"status\": \"OK\",\n  \"code\": 200,\n  \"message\": null,\n  \"errors\": []\n}\n\n</code></pre>\n<h4 id=\"subsequent-pages\">Subsequent pages</h4>\n<p>The response to that request should include a collection of <code>0</code> to <code>n</code> resources. The upper limit will probably be different depending on the endpoint. The highest <code>version</code> number <code>x</code> from this collection (the <code>max</code> attribute above) should be used to request the next page like:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/api/v1/giftcards?min_id=x\n\n</code></pre><p>This should be repeated until an empty collection is returned. This will mean that all items of the collection have been returned.</p>\n<h4 id=\"sorting\">Sorting</h4>\n<p>Objects in returned collections will be sorted by the <code>sort</code> parameter which can be either <code>asc</code> or <code>desc</code>. Defaults to <code>desc</code></p>\n<h1 id=\"rate-limits\">Rate Limits</h1>\n<p>99minds rate limits all API requests in a 60-second window. The rate limits are same for all plans.</p>\n<p>It allows 150 requests per minute (rpm) per IP address. The API returns an HTTP status code of 429 when rate limited and HTTP status code of 503 when an IP is banned.</p>\n<blockquote>\n<p><strong>Note</strong> : Other than artificially rate-limits on the basis of API-requests-per-unit-of-time, there are physical limits to the infrastructure which may limit the maximum throughput of requests on any given API endpoint. 99minds also reserves the right to limit unreasonable or abusive API activity in the interest of platform stability and may even block such requests. </p>\n</blockquote>\n<p>99minds exposes rate limit positioning to applications using the following response headers:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Example value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>X-RateLimit-Limit</td>\n<td>1</td>\n</tr>\n<tr>\n<td>X-RateLimit-Remaining</td>\n<td>0</td>\n</tr>\n<tr>\n<td>X-RateLimit-Reset</td>\n<td>1652820860</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"status-codes\">Status Codes</h1>\n<p>When 99minds receives a request to an API endpoint, a number of different HTTP status codes can be returned in the response depending on the original request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>The request was successfully processed by 99minds.</td>\n</tr>\n<tr>\n<td>400</td>\n<td>The request was not understood by the server, generally due to bad syntax or because the Content-Type header was not correctly set to application/json. This status is also returned when the request provides an invalid code parameter during the OAuth token exchange process.</td>\n</tr>\n<tr>\n<td>401</td>\n<td>The necessary authentication credentials are not present in the request or are incorrect.</td>\n</tr>\n<tr>\n<td>403</td>\n<td>The server is refusing to respond to the request. This is generally because you have not requested the appropriate scope for this action.</td>\n</tr>\n<tr>\n<td>404</td>\n<td>The requested resource was not found but could be available again in the future.</td>\n</tr>\n<tr>\n<td>422</td>\n<td>The request body was well-formed but contains semantical errors. The response body will provide more details in the errors parameter.</td>\n</tr>\n<tr>\n<td>429</td>\n<td>The request was not accepted because the application has exceeded the rate limit. See the API Call Limit documentation for a breakdown of 99minds's rate-limiting mechanism.</td>\n</tr>\n<tr>\n<td>500</td>\n<td>An internal error occurred in 99minds. Please post to the API &amp; support forum so that 99minds staff can investigate.</td>\n</tr>\n<tr>\n<td>501</td>\n<td>The requested endpoint is not available on that particular shop, e.g. requesting higher plan specific API on a shop running on a start-up plan. This response may also indicate that this endpoint is reserved for future use.</td>\n</tr>\n<tr>\n<td>503</td>\n<td>The server is currently unavailable. Check the status page for reported service outages.</td>\n</tr>\n<tr>\n<td>504</td>\n<td>The request could not complete in time. Try breaking it down in multiple smaller requests.</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authorization","slug":"authorization"},{"content":"Response Format","slug":"response-format"},{"content":"Pagination","slug":"pagination"},{"content":"Rate Limits","slug":"rate-limits"},{"content":"Status Codes","slug":"status-codes"}],"owner":"50030","collectionId":"4802a0e5-767b-428f-a28f-b41289d67163","publishedId":"UUxujq5V","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-12-29T18:23:25.000Z"},"item":[{"name":"Gift Card","item":[{"name":"Get Gift cards","id":"051ed7f1-9fea-42eb-a91c-5efd1ae51921","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.giftcard.99minds.io/api/v1/giftcards?page_no=1","description":"<p>This endpoint retrieves a list of all existing gift cards.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_no</td>\n<td><strong>Yes</strong></td>\n<td>Page no &gt; 0.</td>\n</tr>\n<tr>\n<td>batch_id</td>\n<td><strong>No</strong></td>\n<td>Gift card <code>batch_id</code>.</td>\n</tr>\n<tr>\n<td>card_id</td>\n<td><strong>No</strong></td>\n<td>Gift card <code>card_id</code>.</td>\n</tr>\n<tr>\n<td>customer_id</td>\n<td><strong>No</strong></td>\n<td>99minds generated customer id</td>\n</tr>\n<tr>\n<td>client_customer_id</td>\n<td><strong>No</strong></td>\n<td>Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.</td>\n</tr>\n<tr>\n<td>client_customer_platform</td>\n<td><strong>No</strong></td>\n<td>Any one of the supported platforms. <code>client_customer_platform</code> should be passed in along with <code>client_customer_id</code> for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>giftcard_numbers</td>\n<td><strong>No</strong></td>\n<td>Comma separated list gift card numbers. Max 50.</td>\n</tr>\n<tr>\n<td>currency_code</td>\n<td>No</td>\n<td>3-letter ISO 4217 currency code. e.g, <code>USD, EUR</code></td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td><code>asc</code> or <code>desc</code>. Default <code>desc</code></td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of gift card</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of gift card</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"page_no","value":"1"}],"variable":[]}},"response":[{"id":"f5abd71e-5832-4cb0-af5f-d2af53cba6c6","name":"Get Gift cards","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.giftcard.99minds.io/api/v1/giftcards?page_no=1","host":["https://api.giftcard.99minds.io"],"path":["api","v1","giftcards"],"query":[{"key":"page_no","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"215f79b65c24cd0e8f1d0690f05ed44d\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"7e1294c3-3474-455d-896a-7e601fd9451f","enabled":true},{"key":"X-Runtime","value":"0.828459","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"total_records\": 47,\n        \"total_pages\": 1,\n        \"current_page\": 1,\n        \"next_page\": null,\n        \"prev_page\": null,\n        \"version\": {\n            \"min\": 4575,\n            \"max\": 4638\n        },\n        \"giftcards\": [\n            {\n                \"version\": 4638,\n                \"card_id\": \"card_94ff183e906c431417\",\n                \"batch_id\": null,\n                \"active\": true,\n                \"giftcard_number\": \"RUKZXVHROLTKA3\",\n                \"original_value\": \"2.00\",\n                \"remaining_value\": \"2.00\",\n                \"balance\": \"2.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2023-06-21\",\n                \"campaign_name\": \"Promotional\",\n                \"campaign_id\": \"campaign_edd0fd46bbf83e0b96\",\n                \"created_at\": \"2022-06-21T10:41:35.000Z\"\n            },\n            {\n                \"version\": 4637,\n                \"card_id\": \"card_b48f299dec7af182db\",\n                \"batch_id\": null,\n                \"active\": true,\n                \"giftcard_number\": \"ONCXHKJSOO8RHK\",\n                \"original_value\": \"12.00\",\n                \"remaining_value\": \"12.00\",\n                \"balance\": \"12.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2023-06-21\",\n                \"campaign_name\": \"Promotional\",\n                \"campaign_id\": \"campaign_edd0fd46bbf83e0b96\",\n                \"created_at\": \"2022-06-21T10:40:05.000Z\"\n            },\n            {\n                \"version\": 4625,\n                \"card_id\": \"card_cb5f9f04d62df47a17\",\n                \"batch_id\": null,\n                \"active\": true,\n                \"giftcard_number\": \"RKXE8MZBHAYDOK\",\n                \"original_value\": \"100.00\",\n                \"remaining_value\": \"100.00\",\n                \"balance\": \"100.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Digital Campaign - Preloaded\",\n                \"campaign_id\": \"campaign_7b73359cc46242e533\",\n                \"created_at\": \"2022-06-09T15:24:27.000Z\"\n            },\n            {\n                \"version\": 4620,\n                \"card_id\": \"card_6a87e0d03e6170ba9f\",\n                \"batch_id\": null,\n                \"active\": true,\n                \"giftcard_number\": \"7HO9ECYPU2UUZO\",\n                \"original_value\": \"100.00\",\n                \"remaining_value\": \"100.00\",\n                \"balance\": \"100.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Digital Campaign - Preloaded\",\n                \"campaign_id\": \"campaign_7b73359cc46242e533\",\n                \"created_at\": \"2022-05-25T12:20:18.000Z\"\n            },\n            {\n                \"version\": 4619,\n                \"card_id\": \"card_bdd095273bfb0b03d7\",\n                \"batch_id\": null,\n                \"active\": true,\n                \"giftcard_number\": \"TQHDHPGXBDQ3T3\",\n                \"original_value\": \"100.00\",\n                \"remaining_value\": \"100.00\",\n                \"balance\": \"100.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Digital Campaign - Preloaded\",\n                \"campaign_id\": \"campaign_7b73359cc46242e533\",\n                \"created_at\": \"2022-05-25T12:20:00.000Z\"\n            },\n            {\n                \"version\": 4618,\n                \"card_id\": \"card_1c2f5901f011dc7b8f\",\n                \"batch_id\": \"batch_43fcdaf8970d2f51ad\",\n                \"active\": true,\n                \"giftcard_number\": \"ZMPINXVKBOHCGJ\",\n                \"original_value\": \"0.00\",\n                \"remaining_value\": \"0.00\",\n                \"balance\": \"0.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Physical - Not preloaded\",\n                \"campaign_id\": \"campaign_4cdeae47e07d2abe3b\",\n                \"created_at\": \"2022-05-25T10:06:34.000Z\"\n            },\n            {\n                \"version\": 4617,\n                \"card_id\": \"card_119b89529a05539cd0\",\n                \"batch_id\": \"batch_43fcdaf8970d2f51ad\",\n                \"active\": true,\n                \"giftcard_number\": \"LOZQLDEILYPPUP\",\n                \"original_value\": \"0.00\",\n                \"remaining_value\": \"0.00\",\n                \"balance\": \"0.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Physical - Not preloaded\",\n                \"campaign_id\": \"campaign_4cdeae47e07d2abe3b\",\n                \"created_at\": \"2022-05-25T10:06:34.000Z\"\n            },\n            {\n                \"version\": 4616,\n                \"card_id\": \"card_ad146bd04552a31b9b\",\n                \"batch_id\": \"batch_d8cf450c803b4adbee\",\n                \"active\": true,\n                \"giftcard_number\": \"HI7C3Z0JSVVEPW\",\n                \"original_value\": \"12.00\",\n                \"remaining_value\": \"12.00\",\n                \"balance\": \"12.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2023-05-23\",\n                \"campaign_name\": \"Promotional\",\n                \"campaign_id\": \"campaign_edd0fd46bbf83e0b96\",\n                \"created_at\": \"2022-05-23T12:10:28.000Z\"\n            },\n            {\n                \"version\": 4615,\n                \"card_id\": \"card_5c29d8cf56cb30d326\",\n                \"batch_id\": \"batch_d8cf450c803b4adbee\",\n                \"active\": true,\n                \"giftcard_number\": \"1LVTDDLJUGMKPG\",\n                \"original_value\": \"12.00\",\n                \"remaining_value\": \"12.00\",\n                \"balance\": \"12.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2023-05-23\",\n                \"campaign_name\": \"Promotional\",\n                \"campaign_id\": \"campaign_edd0fd46bbf83e0b96\",\n                \"created_at\": \"2022-05-23T12:10:23.000Z\"\n            },\n            {\n                \"version\": 4614,\n                \"card_id\": \"card_0c28fc9bb7e4b70515\",\n                \"batch_id\": \"batch_d8cf450c803b4adbee\",\n                \"active\": true,\n                \"giftcard_number\": \"80O61DKIC18TA4\",\n                \"original_value\": \"12.00\",\n                \"remaining_value\": \"12.00\",\n                \"balance\": \"12.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2023-05-23\",\n                \"campaign_name\": \"Promotional\",\n                \"campaign_id\": \"campaign_edd0fd46bbf83e0b96\",\n                \"created_at\": \"2022-05-23T12:10:18.000Z\"\n            },\n            {\n                \"version\": 4613,\n                \"card_id\": \"card_733cef425ed6a88d17\",\n                \"batch_id\": \"batch_90673af9f3a5e33296\",\n                \"active\": true,\n                \"giftcard_number\": \"6IEQQSTPNJOE3C\",\n                \"original_value\": \"122.00\",\n                \"remaining_value\": \"122.00\",\n                \"balance\": \"122.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2023-05-23\",\n                \"campaign_name\": \"Promotional\",\n                \"campaign_id\": \"campaign_edd0fd46bbf83e0b96\",\n                \"created_at\": \"2022-05-23T12:05:10.000Z\"\n            },\n            {\n                \"version\": 4612,\n                \"card_id\": \"card_57727a8f614203fe49\",\n                \"batch_id\": \"batch_90673af9f3a5e33296\",\n                \"active\": true,\n                \"giftcard_number\": \"LWEWXC32ZKBUOY\",\n                \"original_value\": \"122.00\",\n                \"remaining_value\": \"122.00\",\n                \"balance\": \"122.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2023-05-23\",\n                \"campaign_name\": \"Promotional\",\n                \"campaign_id\": \"campaign_edd0fd46bbf83e0b96\",\n                \"created_at\": \"2022-05-23T12:05:05.000Z\"\n            },\n            {\n                \"version\": 4611,\n                \"card_id\": \"card_e5b0525c86e8125ca0\",\n                \"batch_id\": \"batch_15924d7fa5bafba1b4\",\n                \"active\": true,\n                \"giftcard_number\": \"NYDVMXQXYFWEFS\",\n                \"original_value\": \"12.00\",\n                \"remaining_value\": \"12.00\",\n                \"balance\": \"12.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2023-05-23\",\n                \"campaign_name\": \"Promotional\",\n                \"campaign_id\": \"campaign_edd0fd46bbf83e0b96\",\n                \"created_at\": \"2022-05-23T10:01:26.000Z\"\n            },\n            {\n                \"version\": 4610,\n                \"card_id\": \"card_75ff613d5c171fc782\",\n                \"batch_id\": \"batch_15924d7fa5bafba1b4\",\n                \"active\": true,\n                \"giftcard_number\": \"3J9XIWHFCJKKSM\",\n                \"original_value\": \"12.00\",\n                \"remaining_value\": \"12.00\",\n                \"balance\": \"12.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2023-05-23\",\n                \"campaign_name\": \"Promotional\",\n                \"campaign_id\": \"campaign_edd0fd46bbf83e0b96\",\n                \"created_at\": \"2022-05-23T10:01:21.000Z\"\n            },\n            {\n                \"version\": 4608,\n                \"card_id\": \"card_1a9903f160aa70fdc5\",\n                \"batch_id\": \"batch_617626d5fa88c29c79\",\n                \"active\": true,\n                \"giftcard_number\": \"S87WTAZI4J1RAS\",\n                \"original_value\": \"12.00\",\n                \"remaining_value\": \"2.20\",\n                \"balance\": \"2.20\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2023-05-19\",\n                \"campaign_name\": \"Promotional\",\n                \"campaign_id\": \"campaign_edd0fd46bbf83e0b96\",\n                \"created_at\": \"2022-05-19T21:07:15.000Z\"\n            },\n            {\n                \"version\": 4607,\n                \"card_id\": \"card_6bb3ee6b1118d90ff7\",\n                \"batch_id\": \"batch_617626d5fa88c29c79\",\n                \"active\": true,\n                \"giftcard_number\": \"ZC7N7F7UHJOXPK\",\n                \"original_value\": \"12.00\",\n                \"remaining_value\": \"12.00\",\n                \"balance\": \"12.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2023-05-19\",\n                \"campaign_name\": \"Promotional\",\n                \"campaign_id\": \"campaign_edd0fd46bbf83e0b96\",\n                \"created_at\": \"2022-05-19T21:07:15.000Z\"\n            },\n            {\n                \"version\": 4606,\n                \"card_id\": \"card_6063558231de3a920b\",\n                \"batch_id\": \"batch_dd833b2817afb53335\",\n                \"active\": true,\n                \"giftcard_number\": \"ABCXYZ\",\n                \"original_value\": \"0.00\",\n                \"remaining_value\": \"0.00\",\n                \"balance\": \"0.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Physical - Not preloaded\",\n                \"campaign_id\": \"campaign_4cdeae47e07d2abe3b\",\n                \"created_at\": \"2022-05-18T12:12:12.000Z\"\n            },\n            {\n                \"version\": 4605,\n                \"card_id\": \"card_c1d101fe42f78d7472\",\n                \"batch_id\": \"batch_f67486e0fec38d22e1\",\n                \"active\": true,\n                \"giftcard_number\": \"DUVKGUOFOPIFWT\",\n                \"original_value\": \"0.00\",\n                \"remaining_value\": \"0.00\",\n                \"balance\": \"0.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Physical - Not preloaded\",\n                \"campaign_id\": \"campaign_4cdeae47e07d2abe3b\",\n                \"created_at\": \"2022-05-14T15:25:14.000Z\"\n            },\n            {\n                \"version\": 4604,\n                \"card_id\": \"card_d0735bfe6ab97966a0\",\n                \"batch_id\": \"batch_f67486e0fec38d22e1\",\n                \"active\": true,\n                \"giftcard_number\": \"QRJUBYKSWDDNAX\",\n                \"original_value\": \"0.00\",\n                \"remaining_value\": \"0.00\",\n                \"balance\": \"0.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Physical - Not preloaded\",\n                \"campaign_id\": \"campaign_4cdeae47e07d2abe3b\",\n                \"created_at\": \"2022-05-14T15:25:14.000Z\"\n            },\n            {\n                \"version\": 4603,\n                \"card_id\": \"card_1655fa57c500fb2556\",\n                \"batch_id\": null,\n                \"active\": true,\n                \"giftcard_number\": \"ZHDJN3FEOI5O\",\n                \"original_value\": \"0.00\",\n                \"remaining_value\": \"0.00\",\n                \"balance\": \"0.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Store Credit Campaign\",\n                \"campaign_id\": \"campaign_f2ae9c4cce1c2559b4\",\n                \"created_at\": \"2022-05-12T14:31:24.000Z\"\n            },\n            {\n                \"version\": 4601,\n                \"card_id\": \"card_40a1b8bcb4c1b4e48c\",\n                \"batch_id\": \"batch_a62a24afbb6d879e44\",\n                \"active\": true,\n                \"giftcard_number\": \"OLEJZQ3UNTSQ\",\n                \"original_value\": \"0.00\",\n                \"remaining_value\": \"0.00\",\n                \"balance\": \"0.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Store Credit Campaign\",\n                \"campaign_id\": \"campaign_f2ae9c4cce1c2559b4\",\n                \"created_at\": \"2022-05-12T10:53:21.000Z\"\n            },\n            {\n                \"version\": 4600,\n                \"card_id\": \"card_b1033c782bf18e6507\",\n                \"batch_id\": \"batch_a62a24afbb6d879e44\",\n                \"active\": true,\n                \"giftcard_number\": \"4CFVTTTTFZWQ\",\n                \"original_value\": \"0.00\",\n                \"remaining_value\": \"0.00\",\n                \"balance\": \"0.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Store Credit Campaign\",\n                \"campaign_id\": \"campaign_f2ae9c4cce1c2559b4\",\n                \"created_at\": \"2022-05-12T10:53:21.000Z\"\n            },\n            {\n                \"version\": 4599,\n                \"card_id\": \"card_60eda0edf570b6945f\",\n                \"batch_id\": \"batch_a62a24afbb6d879e44\",\n                \"active\": true,\n                \"giftcard_number\": \"A1PGSHLCITAC\",\n                \"original_value\": \"21.00\",\n                \"remaining_value\": \"12.90\",\n                \"balance\": \"12.90\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Store Credit Campaign\",\n                \"campaign_id\": \"campaign_f2ae9c4cce1c2559b4\",\n                \"created_at\": \"2022-05-12T10:53:21.000Z\"\n            },\n            {\n                \"version\": 4598,\n                \"card_id\": \"card_8109b486bb2ee50751\",\n                \"batch_id\": \"batch_a62a24afbb6d879e44\",\n                \"active\": true,\n                \"giftcard_number\": \"DMXBYEUFTP0N\",\n                \"original_value\": \"0.00\",\n                \"remaining_value\": \"0.00\",\n                \"balance\": \"0.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Store Credit Campaign\",\n                \"campaign_id\": \"campaign_f2ae9c4cce1c2559b4\",\n                \"created_at\": \"2022-05-12T10:53:20.000Z\"\n            },\n            {\n                \"version\": 4597,\n                \"card_id\": \"card_0afd85cd5e6fc01aac\",\n                \"batch_id\": \"batch_d3bd710086c97e3779\",\n                \"active\": true,\n                \"giftcard_number\": \"DVWEPCAF86ZJSF\",\n                \"original_value\": \"10.00\",\n                \"remaining_value\": \"10.00\",\n                \"balance\": \"10.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2023-05-11\",\n                \"campaign_name\": \"Promotional\",\n                \"campaign_id\": \"campaign_edd0fd46bbf83e0b96\",\n                \"created_at\": \"2022-05-11T10:22:29.000Z\"\n            },\n            {\n                \"version\": 4596,\n                \"card_id\": \"card_ae6c4b35ed2f83caf2\",\n                \"batch_id\": \"batch_d3bd710086c97e3779\",\n                \"active\": true,\n                \"giftcard_number\": \"L69NW5IJHA38ER\",\n                \"original_value\": \"10.00\",\n                \"remaining_value\": \"8.00\",\n                \"balance\": \"8.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2022-05-27\",\n                \"campaign_name\": \"Promotional\",\n                \"campaign_id\": \"campaign_edd0fd46bbf83e0b96\",\n                \"created_at\": \"2022-05-11T10:22:29.000Z\"\n            },\n            {\n                \"version\": 4595,\n                \"card_id\": \"card_1a677f37bf7846e7ba\",\n                \"batch_id\": null,\n                \"active\": true,\n                \"giftcard_number\": \"UXBOAV9XICESPY\",\n                \"original_value\": \"12.00\",\n                \"remaining_value\": \"12.00\",\n                \"balance\": \"12.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Digital Campaign - Preloaded\",\n                \"campaign_id\": \"campaign_7b73359cc46242e533\",\n                \"created_at\": \"2022-05-10T11:36:13.000Z\"\n            },\n            {\n                \"version\": 4594,\n                \"card_id\": \"card_a2c54ec6dc06be45f7\",\n                \"batch_id\": \"batch_f8afaa9d032b5e161b\",\n                \"active\": true,\n                \"giftcard_number\": \"NZ3NIF5R1GYX\",\n                \"original_value\": \"0.00\",\n                \"remaining_value\": \"0.00\",\n                \"balance\": \"0.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Store Credit Campaign\",\n                \"campaign_id\": \"campaign_f2ae9c4cce1c2559b4\",\n                \"created_at\": \"2022-05-09T12:14:26.000Z\"\n            },\n            {\n                \"version\": 4593,\n                \"card_id\": \"card_849dfe4b8f91037c9a\",\n                \"batch_id\": \"batch_f8afaa9d032b5e161b\",\n                \"active\": true,\n                \"giftcard_number\": \"SR0BVDK7VDYT\",\n                \"original_value\": \"2.00\",\n                \"remaining_value\": \"2.00\",\n                \"balance\": \"2.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Store Credit Campaign\",\n                \"campaign_id\": \"campaign_f2ae9c4cce1c2559b4\",\n                \"created_at\": \"2022-05-09T12:14:26.000Z\"\n            },\n            {\n                \"version\": 4592,\n                \"card_id\": \"card_d6cd61320497379b3a\",\n                \"batch_id\": null,\n                \"active\": true,\n                \"giftcard_number\": \"5VZ01SKSRFKVZM\",\n                \"original_value\": \"60.00\",\n                \"remaining_value\": \"60.00\",\n                \"balance\": \"60.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Digital Campaign - Preloaded\",\n                \"campaign_id\": \"campaign_7b73359cc46242e533\",\n                \"created_at\": \"2022-05-05T16:12:18.000Z\"\n            },\n            {\n                \"version\": 4591,\n                \"card_id\": \"card_121aede130d213b9ac\",\n                \"batch_id\": null,\n                \"active\": true,\n                \"giftcard_number\": \"DFEL7HQUXWY0GE\",\n                \"original_value\": \"60.00\",\n                \"remaining_value\": \"60.00\",\n                \"balance\": \"60.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Digital Campaign - Preloaded\",\n                \"campaign_id\": \"campaign_7b73359cc46242e533\",\n                \"created_at\": \"2022-05-05T15:54:53.000Z\"\n            },\n            {\n                \"version\": 4590,\n                \"card_id\": \"card_9f32d16ee918b34d54\",\n                \"batch_id\": null,\n                \"active\": true,\n                \"giftcard_number\": \"TABF1GUOCODNWM\",\n                \"original_value\": \"60.00\",\n                \"remaining_value\": \"60.00\",\n                \"balance\": \"60.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Digital Campaign - Preloaded\",\n                \"campaign_id\": \"campaign_7b73359cc46242e533\",\n                \"created_at\": \"2022-05-05T15:36:47.000Z\"\n            },\n            {\n                \"version\": 4589,\n                \"card_id\": \"card_0dde95d1e1886d7c68\",\n                \"batch_id\": \"batch_d101f4bcb53c0f6a6b\",\n                \"active\": true,\n                \"giftcard_number\": \"OUWHYRLYMSWDRJ\",\n                \"original_value\": \"0.00\",\n                \"remaining_value\": \"0.00\",\n                \"balance\": \"0.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Physical - Not preloaded\",\n                \"campaign_id\": \"campaign_4cdeae47e07d2abe3b\",\n                \"created_at\": \"2022-04-27T11:14:02.000Z\"\n            },\n            {\n                \"version\": 4588,\n                \"card_id\": \"card_a1666a6a659b551924\",\n                \"batch_id\": \"batch_d101f4bcb53c0f6a6b\",\n                \"active\": true,\n                \"giftcard_number\": \"ZYBBOXEVDPWDGG\",\n                \"original_value\": \"0.00\",\n                \"remaining_value\": \"0.00\",\n                \"balance\": \"0.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Physical - Not preloaded\",\n                \"campaign_id\": \"campaign_4cdeae47e07d2abe3b\",\n                \"created_at\": \"2022-04-27T11:14:02.000Z\"\n            },\n            {\n                \"version\": 4587,\n                \"card_id\": \"card_ee642ded24e4593a38\",\n                \"batch_id\": \"batch_0e031e5fd9c5633ced\",\n                \"active\": true,\n                \"giftcard_number\": \"N0NPUM2LOEDR99\",\n                \"original_value\": \"12.00\",\n                \"remaining_value\": \"12.00\",\n                \"balance\": \"12.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2022-05-27\",\n                \"campaign_name\": \"Physical - preloaded\",\n                \"campaign_id\": \"campaign_2af91fcc5e4f46827b\",\n                \"created_at\": \"2022-04-27T10:59:59.000Z\"\n            },\n            {\n                \"version\": 4586,\n                \"card_id\": \"card_f5d4880efdd4c545a7\",\n                \"batch_id\": \"batch_0e031e5fd9c5633ced\",\n                \"active\": true,\n                \"giftcard_number\": \"FGYBRNBGV8FD1D\",\n                \"original_value\": \"21.90\",\n                \"remaining_value\": \"21.90\",\n                \"balance\": \"21.90\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2022-05-27\",\n                \"campaign_name\": \"Physical - preloaded\",\n                \"campaign_id\": \"campaign_2af91fcc5e4f46827b\",\n                \"created_at\": \"2022-04-27T10:59:59.000Z\"\n            },\n            {\n                \"version\": 4585,\n                \"card_id\": \"card_9a03d18df877befa36\",\n                \"batch_id\": \"batch_3faaafdae4e3e0c122\",\n                \"active\": true,\n                \"giftcard_number\": \"2YZTEZVWFUU3RO\",\n                \"original_value\": \"10.00\",\n                \"remaining_value\": \"10.00\",\n                \"balance\": \"10.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Physical - preloaded\",\n                \"campaign_id\": \"campaign_2af91fcc5e4f46827b\",\n                \"created_at\": \"2022-04-27T10:59:47.000Z\"\n            },\n            {\n                \"version\": 4584,\n                \"card_id\": \"card_5aea11a0a19916ae35\",\n                \"batch_id\": \"batch_3faaafdae4e3e0c122\",\n                \"active\": true,\n                \"giftcard_number\": \"S0XKK6L7OI8HDM\",\n                \"original_value\": \"10.00\",\n                \"remaining_value\": \"10.00\",\n                \"balance\": \"10.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2022-05-27\",\n                \"campaign_name\": \"Physical - preloaded\",\n                \"campaign_id\": \"campaign_2af91fcc5e4f46827b\",\n                \"created_at\": \"2022-04-27T10:59:47.000Z\"\n            },\n            {\n                \"version\": 4583,\n                \"card_id\": \"card_4c0454b61dc9c94ae9\",\n                \"batch_id\": \"batch_f7e5f314c328f985f5\",\n                \"active\": true,\n                \"giftcard_number\": \"57IQ5GFMIOE4XK\",\n                \"original_value\": \"0.00\",\n                \"remaining_value\": \"0.00\",\n                \"balance\": \"0.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Physical - preloaded\",\n                \"campaign_id\": \"campaign_2af91fcc5e4f46827b\",\n                \"created_at\": \"2022-04-26T12:54:12.000Z\"\n            },\n            {\n                \"version\": 4582,\n                \"card_id\": \"card_71847900b993c86b00\",\n                \"batch_id\": \"batch_f7e5f314c328f985f5\",\n                \"active\": true,\n                \"giftcard_number\": \"NTCI1ZLGEOV6GP\",\n                \"original_value\": \"60.00\",\n                \"remaining_value\": \"60.00\",\n                \"balance\": \"60.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Physical - preloaded\",\n                \"campaign_id\": \"campaign_2af91fcc5e4f46827b\",\n                \"created_at\": \"2022-04-26T12:54:12.000Z\"\n            },\n            {\n                \"version\": 4581,\n                \"card_id\": \"card_a56fdd666ffc858f05\",\n                \"batch_id\": \"batch_44b0566cc9b1535932\",\n                \"active\": true,\n                \"giftcard_number\": \"GUOWPZMWBKQYXP\",\n                \"original_value\": \"0.00\",\n                \"remaining_value\": \"0.00\",\n                \"balance\": \"0.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Physical - Not preloaded\",\n                \"campaign_id\": \"campaign_4cdeae47e07d2abe3b\",\n                \"created_at\": \"2022-04-25T10:39:28.000Z\"\n            },\n            {\n                \"version\": 4580,\n                \"card_id\": \"card_f3f55d7fecf0db76de\",\n                \"batch_id\": \"batch_44b0566cc9b1535932\",\n                \"active\": true,\n                \"giftcard_number\": \"VUPHTPFVFOTTYL\",\n                \"original_value\": \"0.00\",\n                \"remaining_value\": \"0.00\",\n                \"balance\": \"0.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": null,\n                \"campaign_name\": \"Physical - Not preloaded\",\n                \"campaign_id\": \"campaign_4cdeae47e07d2abe3b\",\n                \"created_at\": \"2022-04-25T10:39:28.000Z\"\n            },\n            {\n                \"version\": 4579,\n                \"card_id\": \"card_35f57a1e0eb0734c86\",\n                \"batch_id\": \"batch_92589d0e80711a2fae\",\n                \"active\": true,\n                \"giftcard_number\": \"AJMUDTEST654!\",\n                \"original_value\": \"100.00\",\n                \"remaining_value\": \"100.00\",\n                \"balance\": \"100.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2025-03-07\",\n                \"campaign_name\": \"Physical - Not preloaded\",\n                \"campaign_id\": \"campaign_4cdeae47e07d2abe3b\",\n                \"created_at\": \"2022-04-25T10:14:26.000Z\"\n            },\n            {\n                \"version\": 4578,\n                \"card_id\": \"card_b5ad176e2cfe8b64c8\",\n                \"batch_id\": \"batch_92589d0e80711a2fae\",\n                \"active\": true,\n                \"giftcard_number\": \"AJMUDTEST876!\",\n                \"original_value\": \"60.00\",\n                \"remaining_value\": \"60.00\",\n                \"balance\": \"60.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2022-07-27\",\n                \"campaign_name\": \"Physical - Not preloaded\",\n                \"campaign_id\": \"campaign_4cdeae47e07d2abe3b\",\n                \"created_at\": \"2022-04-25T10:14:26.000Z\"\n            },\n            {\n                \"version\": 4577,\n                \"card_id\": \"card_d898c837f57f8c4b41\",\n                \"batch_id\": \"batch_92589d0e80711a2fae\",\n                \"active\": true,\n                \"giftcard_number\": \"AJMUDTEST874!\",\n                \"original_value\": \"100.00\",\n                \"remaining_value\": \"100.00\",\n                \"balance\": \"100.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2024-01-18\",\n                \"campaign_name\": \"Physical - Not preloaded\",\n                \"campaign_id\": \"campaign_4cdeae47e07d2abe3b\",\n                \"created_at\": \"2022-04-25T10:14:26.000Z\"\n            },\n            {\n                \"version\": 4576,\n                \"card_id\": \"card_70f662a76bcd2a192b\",\n                \"batch_id\": \"batch_92589d0e80711a2fae\",\n                \"active\": true,\n                \"giftcard_number\": \"AJMUDTEST923!\",\n                \"original_value\": \"25.00\",\n                \"remaining_value\": \"25.00\",\n                \"balance\": \"25.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2022-10-18\",\n                \"campaign_name\": \"Physical - Not preloaded\",\n                \"campaign_id\": \"campaign_4cdeae47e07d2abe3b\",\n                \"created_at\": \"2022-04-25T10:14:26.000Z\"\n            },\n            {\n                \"version\": 4575,\n                \"card_id\": \"card_51df3f68959de6fcb2\",\n                \"batch_id\": \"batch_92589d0e80711a2fae\",\n                \"active\": true,\n                \"giftcard_number\": \"AJMUDTEST987!\",\n                \"original_value\": \"240.00\",\n                \"remaining_value\": \"240.00\",\n                \"balance\": \"240.00\",\n                \"currency_code\": \"USD\",\n                \"expiration_date\": \"2024-10-26\",\n                \"campaign_name\": \"Physical - Not preloaded\",\n                \"campaign_id\": \"campaign_4cdeae47e07d2abe3b\",\n                \"created_at\": \"2022-04-25T10:14:26.000Z\"\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"051ed7f1-9fea-42eb-a91c-5efd1ae51921"},{"name":"Get Gift Card Transactions","id":"5049d074-e9d0-4411-8da1-1d5e318ff8c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/transactions?page_no=1","description":"<p>This endpoint retrieves a list of transactions associated with a specific gift card.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_no</td>\n<td><strong>Yes</strong></td>\n<td>Page no &gt; 0.</td>\n</tr>\n<tr>\n<td>card_id</td>\n<td><strong>No</strong></td>\n<td>Gift card <code>card_id</code></td>\n</tr>\n<tr>\n<td>giftcard_numbers</td>\n<td><strong>No</strong></td>\n<td>Comma separated list gift card numbers. Max 50.</td>\n</tr>\n<tr>\n<td>transaction_type</td>\n<td><strong>No</strong></td>\n<td>Type of transaction</td>\n</tr>\n<tr>\n<td>transaction_source</td>\n<td><strong>No</strong></td>\n<td>Source of transaction</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID linked to the transaction.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td><code>asc</code> or <code>desc</code>. Default <code>desc</code></td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of transaction</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of transaction</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","transactions"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"page_no","value":"1"}],"variable":[]}},"response":[{"id":"5d93fcf0-fe33-4273-a5a0-a2def379986a","name":"Get Gift Card Transactions","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.giftcard.99minds.io/api/v1/giftcards/transactions?page_no=1","host":["https://api.giftcard.99minds.io"],"path":["api","v1","giftcards","transactions"],"query":[{"key":"page_no","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"9b1d849d66c8df4d0a61cff5ebce4825\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"fee89c43-d16d-4006-acbc-1c2978e73d2e"},{"key":"X-Runtime","value":"0.156776"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"30696"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"total_records\": 12185,\n        \"total_pages\": 122,\n        \"current_page\": 1,\n        \"next_page\": 2,\n        \"prev_page\": null,\n        \"version\": {\n            \"min\": 21151,\n            \"max\": 21250\n        },\n        \"transactions\": [\n            {\n                \"card_id\": \"card_7aa9db8c2a066ff837\",\n                \"transaction_id\": \"transaction_dc66cd61cda9d69e4d\",\n                \"transaction_amount\": \"100.0\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_source\": \"WIDGET\",\n                \"transaction_date\": \"2024-02-25T10:55:34.000Z\",\n                \"activity_type\": \"FACEBOOK_SHARE\",\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_7aa9db8c2a066ff837\",\n                \"transaction_id\": \"transaction_17b1aaf6ba87bdedbc\",\n                \"transaction_amount\": \"100.0\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_source\": \"WIDGET\",\n                \"transaction_date\": \"2024-02-25T10:54:11.000Z\",\n                \"activity_type\": \"FACEBOOK_LIKE\",\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_7aa9db8c2a066ff837\",\n                \"transaction_id\": \"transaction_8b9c8e4cbd4e15722a\",\n                \"transaction_amount\": \"100.0\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_source\": \"WIDGET\",\n                \"transaction_date\": \"2024-02-25T10:53:15.000Z\",\n                \"activity_type\": \"FACEBOOK_LIKE\",\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_7aa9db8c2a066ff837\",\n                \"transaction_id\": \"transaction_c72cde553f8b448324\",\n                \"transaction_amount\": \"100.0\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_source\": \"WIDGET\",\n                \"transaction_date\": \"2024-02-25T10:52:05.000Z\",\n                \"activity_type\": \"FACEBOOK_LIKE\",\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_7aa9db8c2a066ff837\",\n                \"transaction_id\": \"transaction_17254cff299a31d481\",\n                \"transaction_amount\": \"0.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"WIDGET\",\n                \"transaction_date\": \"2024-02-25T10:52:05.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": \"Point issued for FACEBOOK_LIKE\"\n            },\n            {\n                \"card_id\": \"card_7aa9db8c2a066ff837\",\n                \"transaction_id\": \"transaction_8bce6231197f8de9bc\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_source\": \"WIDGET\",\n                \"transaction_date\": \"2024-02-25T10:52:05.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": \"Point issued for FACEBOOK_LIKE\"\n            },\n            {\n                \"card_id\": \"card_14d8dc480f2e0b14f8\",\n                \"transaction_id\": \"transaction_393463e737f4443cac\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2024-01-23T14:16:58.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": \"asdasd\"\n            },\n            {\n                \"card_id\": \"card_3449dad141a30842aa\",\n                \"transaction_id\": \"transaction_f93a5615738e411557\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2024-01-23T14:14:14.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": \"asd\"\n            },\n            {\n                \"card_id\": \"card_3449dad141a30842aa\",\n                \"transaction_id\": \"transaction_3dddee6d242ecea890\",\n                \"transaction_amount\": \"22.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2024-01-23T14:13:54.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_14d8dc480f2e0b14f8\",\n                \"transaction_id\": \"transaction_dd10c660ef57620666\",\n                \"transaction_amount\": \"22.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2024-01-23T14:13:53.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_99b44973e09289f667\",\n                \"transaction_id\": \"transaction_8d58e9890376449645\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2024-01-23T14:13:23.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": \"Check\"\n            },\n            {\n                \"card_id\": \"card_99b44973e09289f667\",\n                \"transaction_id\": \"transaction_b16d990e75800cdef1\",\n                \"transaction_amount\": \"15.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2024-01-23T14:12:53.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_9d2435a3d63eea148d\",\n                \"transaction_id\": \"transaction_d728b7b57269a555e8\",\n                \"transaction_amount\": \"22.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2024-01-23T14:02:54.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_c9cc294f340584264c\",\n                \"transaction_id\": \"transaction_13223817d17fcfd1fc\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2024-01-23T14:02:40.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_8b0834874c1726730d\",\n                \"transaction_id\": \"transaction_a5ba9fd401d0a80652\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2024-01-23T14:02:16.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_ec642c8fbdd1b133ea\",\n                \"transaction_id\": \"transaction_71af7f4ec4906e11c7\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2024-01-17T08:54:59.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_ec642c8fbdd1b133ea\",\n                \"transaction_id\": \"transaction_32316c16a89f323bdf\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2024-01-17T08:54:59.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_ec642c8fbdd1b133ea\",\n                \"transaction_id\": \"transaction_824190713529d3024b\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"AMOUNT_LOADED\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2024-01-17T08:54:59.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_ec642c8fbdd1b133ea\",\n                \"transaction_id\": \"transaction_8c568b4ae295650ff9\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"PURCHASED\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2024-01-17T08:54:59.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_0f9c961d157e643b97\",\n                \"transaction_id\": \"transaction_048b3eafe0986dac44\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"MANUAL_CREDIT\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2024-01-16T14:18:52.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": \"asdsd\"\n            },\n            {\n                \"card_id\": \"card_27be5b7c5a07de028f\",\n                \"transaction_id\": \"transaction_0675de317f02137781\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"MANUAL_CREDIT\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2024-01-16T14:18:51.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": \"asdsd\"\n            },\n            {\n                \"card_id\": \"card_27be5b7c5a07de028f\",\n                \"transaction_id\": \"transaction_99d3a559945be8a725\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"MANUAL_CREDIT\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2024-01-16T14:18:00.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": \"asda\"\n            },\n            {\n                \"card_id\": \"card_f8054dd9f30084f902\",\n                \"transaction_id\": \"transaction_85bf67ee26de46a9ce\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"PURCHASED\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2024-01-12T12:18:16.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_f8054dd9f30084f902\",\n                \"transaction_id\": \"transaction_a59b88c37e6c3dfcd5\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2024-01-12T12:18:16.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_f8054dd9f30084f902\",\n                \"transaction_id\": \"transaction_cb78509ccb76a8b5b7\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2024-01-12T12:18:16.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_f8054dd9f30084f902\",\n                \"transaction_id\": \"transaction_47f312c446a3a97275\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"AMOUNT_LOADED\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2024-01-12T12:18:16.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_022b23c2d0b280d87e\",\n                \"transaction_id\": \"transaction_6b2693245c2c3ae9c0\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"VOID\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-29T17:56:52.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": \"Aasd\"\n            },\n            {\n                \"card_id\": \"card_d97bb75afcf68d48b5\",\n                \"transaction_id\": \"transaction_5371e826b02a67614d\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"VOID\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T17:33:44.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": \"Test\"\n            },\n            {\n                \"card_id\": \"card_d97bb75afcf68d48b5\",\n                \"transaction_id\": \"transaction_21beefa6cb0bc97fd6\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T17:33:35.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_9750f923511bcb3413\",\n                \"transaction_id\": \"transaction_cbe9396f9f2edb0367\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T17:33:35.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_bb1b5a6977f126d181\",\n                \"transaction_id\": \"transaction_e5b46a03a467deb118\",\n                \"transaction_amount\": \"100.0\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T10:59:36.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_bb1b5a6977f126d181\",\n                \"transaction_id\": \"transaction_882f14cb4db501ec2c\",\n                \"transaction_amount\": \"100.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T10:59:32.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_473492b426d5d19d4e\",\n                \"transaction_id\": \"transaction_61580a9ae8f54f4444\",\n                \"transaction_amount\": \"22.0\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T10:55:25.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_473492b426d5d19d4e\",\n                \"transaction_id\": \"transaction_15715636a82e722fae\",\n                \"transaction_amount\": \"22.0\",\n                \"transaction_type\": \"AMOUNT_LOADED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T10:55:25.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_473492b426d5d19d4e\",\n                \"transaction_id\": \"transaction_cca26ec73aefe0a9d4\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T10:55:25.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_473492b426d5d19d4e\",\n                \"transaction_id\": \"transaction_a16f3d4da9236802f7\",\n                \"transaction_amount\": \"22.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T10:55:24.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_03f63b139252d94116\",\n                \"transaction_id\": \"transaction_02970ec6ba29409efa\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"AMOUNT_LOADED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T10:52:46.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_03f63b139252d94116\",\n                \"transaction_id\": \"transaction_262e55322a215613d7\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T10:52:46.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_03f63b139252d94116\",\n                \"transaction_id\": \"transaction_fcf3d7fab1d34dfb08\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T10:52:46.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_03f63b139252d94116\",\n                \"transaction_id\": \"transaction_6306e0953fb30244b1\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T10:52:45.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_d38637f3ede53b9f4e\",\n                \"transaction_id\": \"transaction_51549e3e46b2b53e0f\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T10:49:26.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_d38637f3ede53b9f4e\",\n                \"transaction_id\": \"transaction_1b7cf431b3d2daa076\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T10:49:24.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_587bd3c00b4635edbf\",\n                \"transaction_id\": \"transaction_b2797c6e669da149fe\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:47:26.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_587bd3c00b4635edbf\",\n                \"transaction_id\": \"transaction_dcdcd43b7817176c03\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"AMOUNT_LOADED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:47:26.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_587bd3c00b4635edbf\",\n                \"transaction_id\": \"transaction_5eb5b509329150fe6b\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:47:26.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_587bd3c00b4635edbf\",\n                \"transaction_id\": \"transaction_b597f4a79c6b89eb40\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:47:25.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_17eb1ffa4109f9f7ff\",\n                \"transaction_id\": \"transaction_db0444a01f59380ea0\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"AMOUNT_LOADED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:46:57.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_17eb1ffa4109f9f7ff\",\n                \"transaction_id\": \"transaction_ff685758b8e4eb2a4a\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:46:57.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_17eb1ffa4109f9f7ff\",\n                \"transaction_id\": \"transaction_04ed729c4aa164e90e\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:46:57.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_17eb1ffa4109f9f7ff\",\n                \"transaction_id\": \"transaction_145ac3b29676334f54\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:46:56.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_f9daa01a1bae06e27f\",\n                \"transaction_id\": \"transaction_f1794a6fe72784f862\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:45:45.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_f9daa01a1bae06e27f\",\n                \"transaction_id\": \"transaction_1ae516fea077a34fbc\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"AMOUNT_LOADED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:45:45.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_f9daa01a1bae06e27f\",\n                \"transaction_id\": \"transaction_33427e0aec873d62c1\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:45:45.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_f9daa01a1bae06e27f\",\n                \"transaction_id\": \"transaction_8cbc26cc8d4f06b05f\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:45:44.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_4770367497b44ccc84\",\n                \"transaction_id\": \"transaction_523cc315a62832fb41\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"AMOUNT_LOADED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:41:14.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_4770367497b44ccc84\",\n                \"transaction_id\": \"transaction_ed886f6a0f60810ad8\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:41:14.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_4770367497b44ccc84\",\n                \"transaction_id\": \"transaction_430eff9e003dcd0e89\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:41:14.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_4770367497b44ccc84\",\n                \"transaction_id\": \"transaction_559584daee925b421c\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:41:13.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_3fe0acbc15d25c3155\",\n                \"transaction_id\": \"transaction_7dd26629a5b1a309f3\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:36:21.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_3fe0acbc15d25c3155\",\n                \"transaction_id\": \"transaction_fd3701841bc9aad671\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"AMOUNT_LOADED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:36:21.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_3fe0acbc15d25c3155\",\n                \"transaction_id\": \"transaction_cb73dfa9faf7549055\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:36:21.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_3fe0acbc15d25c3155\",\n                \"transaction_id\": \"transaction_1338c26e01f4075e73\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:36:20.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_7168b37b010f4d3b31\",\n                \"transaction_id\": \"transaction_8b921e5b5c1a8f6638\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"AMOUNT_LOADED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:04:15.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_7168b37b010f4d3b31\",\n                \"transaction_id\": \"transaction_cb35441eedaf5b9583\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:04:15.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_7168b37b010f4d3b31\",\n                \"transaction_id\": \"transaction_a975a43254b999f25c\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:04:15.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_7168b37b010f4d3b31\",\n                \"transaction_id\": \"transaction_0fb70d95ea3efc1dcf\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:04:14.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_803eebb8e043febef2\",\n                \"transaction_id\": \"transaction_5c9b42714e2c2e382c\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:00:31.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_803eebb8e043febef2\",\n                \"transaction_id\": \"transaction_27df06678068df7c87\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:00:31.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_803eebb8e043febef2\",\n                \"transaction_id\": \"transaction_225486729ff0ea62ac\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"AMOUNT_LOADED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:00:30.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_803eebb8e043febef2\",\n                \"transaction_id\": \"transaction_69274d6aa2a28d4f6e\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T09:00:30.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_e77ba69f7681e46603\",\n                \"transaction_id\": \"transaction_2cfa14c6ffb1d5153f\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"EXTEND_EXPIRY\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T08:46:55.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_e77ba69f7681e46603\",\n                \"transaction_id\": \"transaction_30c31f5fe8faed81fe\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"EXTEND_EXPIRY\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T08:44:56.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_e77ba69f7681e46603\",\n                \"transaction_id\": \"transaction_03636b8ed521dd62ed\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"EXTEND_EXPIRY\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-28T08:27:29.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_e77ba69f7681e46603\",\n                \"transaction_id\": \"transaction_6607cc5dd8e28033ed\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2023-12-20T14:58:20.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_e77ba69f7681e46603\",\n                \"transaction_id\": \"transaction_1385f2102c06068799\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2023-12-20T14:58:20.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_e77ba69f7681e46603\",\n                \"transaction_id\": \"transaction_8eb5830c20982e40de\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"AMOUNT_LOADED\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2023-12-20T14:58:20.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_e77ba69f7681e46603\",\n                \"transaction_id\": \"transaction_1feee5070661289c5a\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"PURCHASED\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2023-12-20T14:58:20.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_65d1801aceeef9ca45\",\n                \"transaction_id\": \"transaction_2241360f9430769ef6\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"EXTEND_EXPIRY\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-20T10:59:01.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_65d1801aceeef9ca45\",\n                \"transaction_id\": \"transaction_d27f61d37ebea22162\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"EXTEND_EXPIRY\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-20T10:58:54.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_65d1801aceeef9ca45\",\n                \"transaction_id\": \"transaction_f5ee16508e3343583c\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"EXTEND_EXPIRY\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-20T10:58:38.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_0f9c961d157e643b97\",\n                \"transaction_id\": \"transaction_64d081135a6cac5601\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2023-12-20T08:32:34.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": \"123x\",\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_0f9c961d157e643b97\",\n                \"transaction_id\": \"transaction_d6648eec61a133b2da\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2023-12-20T08:31:57.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_0f9c961d157e643b97\",\n                \"transaction_id\": \"transaction_ba76960d2341705dcf\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2023-12-20T08:31:49.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_09e06b7d3e8859434a\",\n                \"transaction_id\": \"transaction_3d35f7a1528b459efe\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"MANUAL_CREDIT\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-13T10:37:16.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_27be5b7c5a07de028f\",\n                \"transaction_id\": \"transaction_f4d49107a9bf7eb54c\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"IMPORTED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-09T10:42:56.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_0f9c961d157e643b97\",\n                \"transaction_id\": \"transaction_34dab333bf2a5830ab\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"IMPORTED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-09T10:42:56.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_e3cdd2ba47a5b5a538\",\n                \"transaction_id\": \"transaction_c6b7826cf85dabefad\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"IMPORTED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-12-09T10:42:56.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_27be5b7c5a07de028f\",\n                \"transaction_id\": \"transaction_f923c49eb626059cba\",\n                \"transaction_amount\": \"20.0\",\n                \"transaction_type\": \"PURCHASED\",\n                \"transaction_source\": null,\n                \"transaction_date\": \"2023-12-09T10:42:56.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_0f9c961d157e643b97\",\n                \"transaction_id\": \"transaction_c5098c883721e66592\",\n                \"transaction_amount\": \"80.0\",\n                \"transaction_type\": \"PURCHASED\",\n                \"transaction_source\": null,\n                \"transaction_date\": \"2023-12-09T10:42:56.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_e3cdd2ba47a5b5a538\",\n                \"transaction_id\": \"transaction_eeea58b78905494160\",\n                \"transaction_amount\": \"200.0\",\n                \"transaction_type\": \"PURCHASED\",\n                \"transaction_source\": null,\n                \"transaction_date\": \"2023-12-09T10:42:56.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_8d7c97d68c53ba5513\",\n                \"transaction_id\": \"transaction_e47bd40d753a9d0a77\",\n                \"transaction_amount\": \"2.0\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2023-12-07T09:32:39.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_8d7c97d68c53ba5513\",\n                \"transaction_id\": \"transaction_a62274c0558e187009\",\n                \"transaction_amount\": \"5.0\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_source\": \"WEBPOS\",\n                \"transaction_date\": \"2023-12-07T09:26:25.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_06607e423e1c85de82\",\n                \"transaction_id\": \"transaction_a3a2ac7b64d37bf9db\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-11-30T11:51:57.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_06607e423e1c85de82\",\n                \"transaction_id\": \"transaction_bb915f120183c22883\",\n                \"transaction_amount\": \"0.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-11-30T11:49:48.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_06607e423e1c85de82\",\n                \"transaction_id\": \"transaction_7c669addeba1a74d9a\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-11-30T11:49:48.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_5b46dfc3ea0a230268\",\n                \"transaction_id\": \"transaction_031f82a1c3ccf4c898\",\n                \"transaction_amount\": \"2.0\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_source\": \"WIDGET\",\n                \"transaction_date\": \"2023-11-17T12:48:09.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_a6f962563af94a3383\",\n                \"transaction_id\": \"transaction_06afc8a70000f27c63\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-11-11T12:26:29.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_a6f962563af94a3383\",\n                \"transaction_id\": \"transaction_a5966d653699d7daa2\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"AMOUNT_LOADED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-11-11T12:26:28.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_a6f962563af94a3383\",\n                \"transaction_id\": \"transaction_74d46ac0d8477248cd\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-11-11T12:26:28.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_a6f962563af94a3383\",\n                \"transaction_id\": \"transaction_3474b32640774514a3\",\n                \"transaction_amount\": \"12.0\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"transaction_date\": \"2023-11-11T12:26:24.000Z\",\n                \"activity_type\": null,\n                \"client_order_id\": null,\n                \"client_store_id\": null,\n                \"note\": null\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"5049d074-e9d0-4411-8da1-1d5e318ff8c2"},{"name":"Get Gift Card details","id":"09a77b19-92a7-4af2-82c0-c99d1ff41dc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/card_a524e73137cea92a10","description":"<p>This endpoint retrieves detailed information about a specific gift card, including its balance, expiration date, and status.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","card_a524e73137cea92a10"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"ce10e1da-b489-4d4b-bbfa-4e616eb60de0","name":"Get Gift Card details","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/card_663e4e5a23cc5b1671"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"306dde47e74a8778ba1e8753bda8e41f\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"50467915-ca87-4d12-a1cb-7d4a2881e258","enabled":true},{"key":"X-Runtime","value":"0.088661","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"giftcard\": {\n            \"card_id\": \"card_663e4e5a23cc5b1671\",\n            \"batch_id\": \"batch_7bc9c4dbf3a8a77f29\",\n            \"active\": true,\n            \"giftcard_number\": \"27013270\",\n            \"original_value\": \"12.00\",\n            \"balance\": \"12.00\",\n            \"currency_code\": \"EUR\",\n            \"expiration_date\": \"2022-09-13\",\n            \"delivery_mode\": \"PHYSICAL\",\n            \"campaign_name\": \"Campaign with barcode\",\n            \"campaign_id\": \"campaign_7a5f76580630e17949\",\n            \"created_at\": \"2022-06-15T12:47:09.000Z\",\n            \"customer\": {\n                \"name\": null,\n                \"email\": null,\n                \"customer_id\": null\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"09a77b19-92a7-4af2-82c0-c99d1ff41dc8"},{"name":"Sell Gift Card Check","id":"0ad3cbbd-2539-4539-9d7a-f4822957afc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/sell_check?giftcard_number=MERYFBK67Z53AVUA","description":"<p>This is used to check if a specific gift card can be purchased.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />giftcard_number  <br />card_id</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number or <code>card_id</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>In systems where transactions are done in 2 or more steps, this endpoint helps you to check whether a gift card can be sold and/or reloaded.</p>\n<ol>\n<li><p>If <code>allow_to_sold</code> is <code>true</code> that means the gift card can be sold.</p>\n</li>\n<li><p>If <code>amount_load_required</code> is <code>true</code> that means it's a zero value card and amount is loaded at the time of purchase. Remember to pass <code>card_denomination</code> in the Sell API payload. If <code>amount_load_required</code> is <code>false</code> that means the card already has preloaded value and value of <code>card_denomination</code> will be ignored in the Sell API payload.</p>\n</li>\n<li><p>If <code>reloadable</code> is <code>true</code> that means the gift card can be reloaded.</p>\n</li>\n</ol>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","sell_check"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"giftcard_number","value":"MERYFBK67Z53AVUA"}],"variable":[]}},"response":[{"id":"bed9f6ac-5cc3-455a-96d6-efdfca03fd9d","name":"Sell Gift Card Check","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.giftcard.99minds.io/api/v1/giftcards/sell_check?giftcard_number=MERYFBK67Z53AVUA","host":["https://api.giftcard.99minds.io"],"path":["api","v1","giftcards","sell_check"],"query":[{"key":"giftcard_number","value":"MERYFBK67Z53AVUA"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3261731ebcba4595d0fddc98b07694b2\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b6b1011c-a86e-4fb2-be2f-a18e89f619b8"},{"key":"X-Runtime","value":"0.028286"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"549"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"balance\": {\n            \"active\": true,\n            \"card_id\": \"card_9d2435a3d63eea148d\",\n            \"card_number\": \"MERYFBK67Z53AVUA\",\n            \"original_value\": \"22.0\",\n            \"remaining_value\": \"22.0\",\n            \"expiration_date\": null,\n            \"currency_code\": \"USD\",\n            \"currency_symbol\": \"$\",\n            \"min_init_amount\": 1,\n            \"max_init_amount\": 500,\n            \"last_transaction\": \"CREATION\",\n            \"delivery_mode\": \"PHYSICAL\",\n            \"created_at\": \"2024-01-23T14:02:54.000Z\",\n            \"updated_at\": \"2024-01-23T14:02:54.000Z\",\n            \"allow_to_sold\": true,\n            \"amount_load_required\": false,\n            \"preloaded\": true,\n            \"reloadable\": true,\n            \"reason\": \"\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"0ad3cbbd-2539-4539-9d7a-f4822957afc0"},{"name":"Check Gift Card balance","id":"3888a1ad-54f8-4546-9f85-2c0f894dc10e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/balance?giftcard_number=PROMOFJVSZJDSUYN","description":"<p>This endpoint allows you to check the current balance of a specific gift card.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number</td>\n</tr>\n<tr>\n<td>giftcard_pin</td>\n<td><strong>No</strong></td>\n<td>Gift card pin. Required if the card was originally generated with pin required flag.</td>\n</tr>\n<tr>\n<td>skip_pin_verification</td>\n<td>No</td>\n<td>Default: <code>false</code>. Whether to skip checking PIN for a gift card with a PIN.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","balance"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"giftcard_number","value":"PROMOFJVSZJDSUYN"}],"variable":[]}},"response":[{"id":"965e6ab3-88dc-4ffb-82bb-081a5fa28db2","name":"Check Gift Card balance","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.giftcard.99minds.io/api/v1/giftcards/balance?giftcard_number=I2XNR6Y0","host":["https://api.giftcard.99minds.io"],"path":["api","v1","giftcards","balance"],"query":[{"key":"giftcard_number","value":"I2XNR6Y0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"33c79117b17083a1b3a9a50c71c76fda\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"36e54a95-8e81-4212-9ef9-87ae7c3f9a6f"},{"key":"X-Runtime","value":"0.103155"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"404"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"active\": true,\n        \"card_id\": \"card_018aa7d363cd050731\",\n        \"giftcard_number\": \"I2XNR6Y0\",\n        \"original_value\": \"10.0\",\n        \"remaining_value\": \"10.0\",\n        \"expiration_date\": \"2025-04-22\",\n        \"expired\": false,\n        \"balance\": \"10.00\",\n        \"currency_symbol\": \"$\",\n        \"currency_code\": \"USD\",\n        \"delivery_mode\": \"DIGITAL\",\n        \"preloaded\": false,\n        \"reloadable\": true,\n        \"min_init_amount\": 0,\n        \"max_init_amount\": 1000\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"3888a1ad-54f8-4546-9f85-2c0f894dc10e"},{"name":"Check Gift Card balance (POST)","id":"e0b0a130-5dfc-4798-8a36-70aa416a0f6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"giftcard_number\": \"PROMOE4YXGEY\"\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/balance","description":"<p>This endpoint allows you to check the current balance of a specific gift card.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number</td>\n</tr>\n<tr>\n<td>giftcard_pin</td>\n<td><strong>No</strong></td>\n<td>Gift card pin. Required if the card was originally generated with pin required flag.</td>\n</tr>\n<tr>\n<td>skip_pin_verification</td>\n<td>No</td>\n<td>Default: <code>false</code>. Whether to skip checking PIN for a gift card with a PIN.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","balance"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"2ec17c1b-3c65-4769-9210-563bfcaef7bd","name":"Check Gift Card balance (POST)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"giftcard_number\": \"PROMOE4YXGEY\"\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/balance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"dbcb1a91c4d0d6727419825057a31993\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"dd3bd3d2-01ca-430a-8378-71d784a2b836"},{"key":"X-Runtime","value":"0.030381"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"426"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"active\": true,\n        \"card_id\": \"card_4ab5f367f91e493555\",\n        \"giftcard_number\": \"PROMOE4YXGEY\",\n        \"original_value\": \"15.0\",\n        \"remaining_value\": \"15.0\",\n        \"expiration_date\": \"2025-02-24\",\n        \"expired\": false,\n        \"balance\": \"15.00\",\n        \"currency_symbol\": \"$\",\n        \"currency_code\": \"USD\",\n        \"delivery_mode\": \"DIGITAL\",\n        \"preloaded\": true,\n        \"reloadable\": true,\n        \"pin_required\": false,\n        \"min_init_amount\": 1,\n        \"max_init_amount\": 50\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"e0b0a130-5dfc-4798-8a36-70aa416a0f6c"},{"name":"Create Gift card","id":"d467b851-301a-4e2f-b4ad-cfd245094355","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"giftcard\": {\n        \"store_ref\": \"store_25532f6e35f8a58113\",\n        \"quantity\": 1,\n        \"campaign_id\": \"campaign_8db523cc6cb6ad9903\",\n        \"giftcard_number\": \"YHG9YCUW4VABYRPR\",\n        \"denomination\": 5,\n        \"allow_to_sold\": false\n    }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards","description":"<p>Allows creation of gift card.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>quantity</td>\n<td><strong>Yes</strong></td>\n<td>Quantity of gift cards</td>\n</tr>\n<tr>\n<td>denomination</td>\n<td><strong>Yes</strong></td>\n<td>Gift card value.</td>\n</tr>\n<tr>\n<td>campaign_id</td>\n<td><strong>Yes</strong></td>\n<td>Gift card campaign ID to create gift card under.</td>\n</tr>\n<tr>\n<td>allow_to_sold</td>\n<td><strong>No</strong></td>\n<td>Boolean. Default <code>false</code>. <br />If <code>true</code>, gift cards can be sold in future.  <br />If <code>false</code>, gift cards cannot be sold (considered as already sold).</td>\n</tr>\n<tr>\n<td>giftcard_number</td>\n<td><strong>No</strong></td>\n<td>Gift card number. If not provided, numbers are generate by 99minds.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td><code>store_ref</code>: Unique Store ID generated by 99minds.  <br /><code>client_store_id</code>: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong>Please note that when creating a gift card, gift cards are synced to eCommerce platforms and POS if</strong> <strong><code>allow_to_sold</code></strong> <strong>is</strong> <strong><code>false.</code></strong></p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"c483fbd1-a365-49d1-9ffa-f64d0e513bd3","name":"Sample Create Gift Card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_0b57b8071980613bde\",\n    \"delivery_method_name\": \"DIGITAL\",\n    \"quantity\": 1,\n    \"denomination\": 20,\n    \"campaign_id\": \"campaign_8466b13eea6c3cffe6\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/giftcards"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"e6a25b40d354150308c7b3659f4945c8\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"98b73664-2497-4e1b-82c4-57ee7a731a25","enabled":true},{"key":"X-Runtime","value":"1.438590","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"giftcard\": {\n            \"card_id\": \"card_a3953178f06c455ef6\",\n            \"batch_id\": null,\n            \"active\": true,\n            \"giftcard_number\": \"1822017293102711\",\n            \"original_value\": \"20.00\",\n            \"balance\": \"20.00\",\n            \"expiration_date\": null,\n            \"campaign_name\": \"Giftcard - WC-Woocommerce\",\n            \"campaign_id\": \"campaign_8466b13eea6c3cffe6\",\n            \"currency\": \"USD\",\n            \"allow_to_sold\": false,\n            \"created_at\": \"2021-09-22T10:51:22.000Z\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Gift Card(s) created successfully!\",\n    \"errors\": []\n}"},{"id":"66037f3d-11b7-4539-ba47-c1fccdf9b790","name":"With giftcard_number","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_0b57b8071980613bde\",\n    \"delivery_method_name\": \"DIGITAL\",\n    \"quantity\": 1,\n    \"denomination\": 20,\n    \"campaign_id\": \"campaign_8466b13eea6c3cffe6\",\n    \"giftcard_number\": \"XYZ123\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/giftcards"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"117251c0892370a7e12cb601a9c2e3f8\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"507e9667-47a7-4a5a-aa2c-c39332b0efeb","enabled":true},{"key":"X-Runtime","value":"1.518404","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"giftcard\": {\n            \"card_id\": \"card_ddea4a273504dcc06c\",\n            \"batch_id\": null,\n            \"active\": true,\n            \"giftcard_number\": \"XYZ123\",\n            \"original_value\": \"20.00\",\n            \"balance\": \"20.00\",\n            \"expiration_date\": null,\n            \"delivery_method_name\": \"DIGITAL\",\n            \"campaign_name\": \"Giftcard - WC-Woocommerce\",\n            \"campaign_id\": \"campaign_8466b13eea6c3cffe6\",\n            \"currency\": \"USD\",\n            \"allow_to_sold\": false,\n            \"created_at\": \"2021-09-22T12:26:01.000Z\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Gift Card(s) created successfully!\",\n    \"errors\": []\n}"}],"_postman_id":"d467b851-301a-4e2f-b4ad-cfd245094355"},{"name":"Issue Gift card","id":"6fa9353c-c6e3-419e-8d99-12f106894bde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_3bf44bc72a8f7daf26\",\n    \"campaign_id\": \"campaign_be448c03236c591884\",\n\t\"amount\": 5,\n    \"delivery_mode\": \"DIGITAL\",\n    \"custom_card_number\": \"X532634XTSFHR123\",\n\t\"customer_email\": \"keys@99minds.io\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/issue","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />customer_id  <br />customer_email  <br />client_customer_id &amp; client_customer_platform  <br />customer_email</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_email</code>: Customer's email where gift cards is to be issued.  <br /><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>customer_email</code>: Customer's email.  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>campaign_id</td>\n<td><strong>Yes</strong></td>\n<td>Campaign ID to create gift card in.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><strong>Yes</strong></td>\n<td>Amount of gift card to issue.</td>\n</tr>\n<tr>\n<td>custom_card_number</td>\n<td>No</td>\n<td>When provided 99minds won't generate card number and use the provided one</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>No</td>\n<td>Customer's name</td>\n</tr>\n<tr>\n<td>expiration_date</td>\n<td>No</td>\n<td>Date in <code>ISO8601</code> format specifying when to deliver the order. E.g 2023-04-14</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction This is same as <code>customer_note</code>.</td>\n</tr>\n<tr>\n<td>enforce_min_max_limits</td>\n<td>No</td>\n<td>Default: <code>False</code>. When specified, the gift card balance will be validated against the <code>minimum</code> and <code>maximum</code> values defined in the campaign properties.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />style_id  <br />style_code</td>\n<td>No</td>\n<td><code>style_id</code>: Unique Theme ID generated by 99minds.  <br /><code>style_code</code>: Unique Style Code provided by merchant.  <br />This is used to link theme to the gift card.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","issue"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"1e20175e-e77a-4e13-a59e-6dcf2529d335","name":"Issue Gift card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_d5015be30f7c96c6a6\",\n    \"campaign_id\": \"campaign_187a9f685ba45a9086\",\n\t\"amount\": 10,\n\t\"customer_email\": \"robel.emelia@example.net\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/issue"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"26ec0f0d8f0cf47576a1f1a8971cd54e\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"282fe0fc-e64c-44c9-832a-c3c3e74b9efb","enabled":true},{"key":"X-Runtime","value":"2.421563","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"giftcard\": {\n            \"giftcard_number\": \"MFINZJIFTCJA\",\n            \"original_value\": 10,\n            \"remaining_value\": 10,\n            \"expiration_date\": null,\n            \"transaction\": {\n                \"transaction_id\": \"transaction_06788278d6bc787f43\",\n                \"transaction_type\": \"ISSUED\",\n                \"client_order_id\": null,\n                \"transaction_date\": \"2022-02-23T00:00:00.000Z\"\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Giftcard issued successfully\",\n    \"errors\": []\n}"}],"_postman_id":"6fa9353c-c6e3-419e-8d99-12f106894bde"},{"name":"Sell Gift Card - V2","id":"b837ac67-b9a7-467e-9ec6-a283a26c0649","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"giftcards\": {\n\t\t\"currency_code\": \"USD\",\n\t\t\"store_ref\": \"store_8412d02623ce4c1a30\",\n\t\t\"data\": [{\n\t\t\t\"delivery_mode\": \"PHYSICAL\",\n\t\t\t\"card_denomination\": 10,\n\t\t\t\"quantity\": 1,\n            \"giftcard_numbers\": [\"364116009446\"],\n\t\t\t\"customer_first_name\": \"Macy\",\n\t\t\t\"customer_last_name\": \"Stan\",\n\t\t\t\"customer_email\": \"macy.stan@example.com\"\n\t\t},{\n            \"campaign_id\": \"campaign_d6e9eb4280b521c954\",\n\t\t\t\"delivery_mode\": \"DIGITAL\",\n\t\t\t\"card_denomination\": 10,\n\t\t\t\"quantity\": 1,\n\t\t\t\"customer_first_name\": \"Macy\",\n\t\t\t\"customer_last_name\": \"Stan\",\n\t\t\t\"customer_email\": \"macy.stan@example.com\"\n\t\t}]\n\t}\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/bulk_sell","description":"<p>Allows selling a physical or digital cards with multiple quantities and denominations.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>currency_code</td>\n<td><strong>Yes</strong></td>\n<td>ISO currency code. e.g <code>USD</code>, <code>EUR</code></td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this sell. <strong>Must be unique</strong></td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td><code>store_ref</code>: Unique Store ID generated by 99minds.  <br /><code>client_store_id</code>: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n<tr>\n<td>order_note</td>\n<td><strong>No</strong></td>\n<td>Custom note for the order.</td>\n</tr>\n<tr>\n<td>enforce_min_max_limits</td>\n<td>No</td>\n<td>Default: <code>False</code>. When specified, the gift card balance will be validated against the <code>minimum</code> and <code>maximum</code> values defined in the campaign properties.</td>\n</tr>\n<tr>\n<td>shipping_fee</td>\n<td>No</td>\n<td>Shipping fee.</td>\n</tr>\n<tr>\n<td>data</td>\n<td><strong>Yes</strong></td>\n<td>A data object</td>\n</tr>\n<tr>\n<td>billing_address</td>\n<td><strong>No</strong></td>\n<td>An Address object</td>\n</tr>\n<tr>\n<td>shipping_address</td>\n<td><strong>No</strong></td>\n<td>An Address object</td>\n</tr>\n<tr>\n<td>shipping_details</td>\n<td><strong>No</strong></td>\n<td>Shipping object</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Note: A total of 10 cards can be sold in a single order. This includes the combination of quantity as well as line_items. </p>\n</blockquote>\n<h2 id=\"data-object\">Data Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>delivery_mode</td>\n<td><strong>Yes</strong></td>\n<td><code>PHYSICAL</code> OR <code>DIGITAL</code></td>\n</tr>\n<tr>\n<td>campaign_id</td>\n<td><strong>No</strong></td>\n<td>Campaign ID to create gift card in. Required in case of Digital orders.</td>\n</tr>\n<tr>\n<td>giftcard_numbers</td>\n<td><strong>No</strong></td>\n<td>Gift card numbers to be sold with this line_item. If provided, cards will be allocated to item. If not provided, order will be sent to <code>AWAITING_FULFILLMENT</code> state.</td>\n</tr>\n<tr>\n<td>card_ids</td>\n<td>No</td>\n<td>Card IDs to be sold with this line_item. If provided, cards will be allocated to item. If not provided, order will be sent to <code>AWAITING_FULFILLMENT</code> state.</td>\n</tr>\n<tr>\n<td>card_denomination</td>\n<td><strong>Yes</strong></td>\n<td>Gift card value.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td><strong>Yes</strong></td>\n<td>Quantity of cards to sell. In case of PHYSICAL cards, if <code>giftcard_numbers</code> is provided, quantity should match number of cards.</td>\n</tr>\n<tr>\n<td>customer_first_name</td>\n<td><strong>No</strong></td>\n<td>Buyer's first name.</td>\n</tr>\n<tr>\n<td>customer_last_name</td>\n<td><strong>No</strong></td>\n<td>Buyer's last name.</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>No</td>\n<td>Buyer's name if first/last name is not available.</td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td><strong>No</strong></td>\n<td>Buyer's email address.</td>\n</tr>\n<tr>\n<td>customer_phone</td>\n<td><strong>No</strong></td>\n<td>Buyer's phone number.</td>\n</tr>\n<tr>\n<td>client_customer_id</td>\n<td><strong>No</strong></td>\n<td>Unique customer ID from external system.</td>\n</tr>\n<tr>\n<td>receiver_first_name</td>\n<td><strong>No</strong></td>\n<td>Receiver's first name.  <br />  <br /><code>Note</code>: Only required for gifts.</td>\n</tr>\n<tr>\n<td>receiver_last_name</td>\n<td><strong>No</strong></td>\n<td>Receiver's last name.  <br />  <br /><code>Note</code>: Only required for gifts.</td>\n</tr>\n<tr>\n<td>receiver_name</td>\n<td>No</td>\n<td>Receiver's name if first/last name is not available.  <br />  <br /><code>Note</code>: Only required for gifts.</td>\n</tr>\n<tr>\n<td>receiver_email</td>\n<td><strong>No</strong></td>\n<td>Receiver's email address.  <br />  <br /><code>Note</code>: Only required for gifts.</td>\n</tr>\n<tr>\n<td>receiver_phone</td>\n<td><strong>No</strong></td>\n<td>Receiver's phone number.</td>\n</tr>\n<tr>\n<td>client_receiver_id</td>\n<td><strong>No</strong></td>\n<td>Unique customer ID from external system.  <br />  <br /><code>Note</code>: Only required for gifts.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />style_id  <br />style_code</td>\n<td>No</td>\n<td><code>style_id</code>: Unique Theme ID generated by 99minds.  <br /><code>style_code</code>: Unique Style Code provided by merchant.  <br />This is used to link theme to the gift card.  <br />Can be located in <em>Giftcard Themes</em> section in dashboard.</td>\n</tr>\n<tr>\n<td>message</td>\n<td><strong>No</strong></td>\n<td>Greeting message in case of gift.</td>\n</tr>\n<tr>\n<td>scheduled</td>\n<td>No</td>\n<td><code>True</code> if the order is scheduled. Only applicable when delivery_mode is <code>DIGITAL</code></td>\n</tr>\n<tr>\n<td>deliver_at</td>\n<td>No</td>\n<td>Time in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO8601</a> format specifying when to deliver the order. E.g <code>2023-04-14T13:56:20+05:30</code></td>\n</tr>\n<tr>\n<td>deliver_at_timezone</td>\n<td>No</td>\n<td>Timezone in <a href=\"https://www.iana.org/time-zones\">IANA format</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"address-object\">Address Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>No</td>\n<td>A name used as the label for the address.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>No</td>\n<td>Not included in the Customer Address resource object.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>No</td>\n<td>The phone number of the person associated with the address.</td>\n</tr>\n<tr>\n<td>address1</td>\n<td>No</td>\n<td>The street address of the address.</td>\n</tr>\n<tr>\n<td>address2</td>\n<td>No</td>\n<td>An additional field for the street address of the address, if needed.</td>\n</tr>\n<tr>\n<td>country_code</td>\n<td>No</td>\n<td>The two-letter code for the country of the address.</td>\n</tr>\n<tr>\n<td>country</td>\n<td>No</td>\n<td>The two-letter country code of the address.</td>\n</tr>\n<tr>\n<td>province_code</td>\n<td>No</td>\n<td>The two-letter code for the province or state of the address.</td>\n</tr>\n<tr>\n<td>province</td>\n<td>No</td>\n<td>The province or state name of the address.</td>\n</tr>\n<tr>\n<td>city</td>\n<td>No</td>\n<td>The city of the address.</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>No</td>\n<td>The postal code of the address.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"shipping-details\">Shipping details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title</td>\n<td>No</td>\n<td>A label for shipping type used. For example, Standard shipping, Express Shipping, etc</td>\n</tr>\n<tr>\n<td>price</td>\n<td>No</td>\n<td>Shipping charge</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","bulk_sell"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"154ae749-b562-4705-8496-656d1d567e6b","name":"Sell Gift Card - V2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"giftcards\": {\n\t\t\"currency_code\": \"USD\",\n\t\t\"store_ref\": \"store_8412d02623ce4c1a30\",\n\t\t\"client_order_id\": \"ODXXXXX3112\",\n\t\t\"data\": [{\n\t\t\t\"delivery_mode\": \"DIGITAL\",\n\t\t\t\"card_denomination\": 10,\n\t\t\t\"quantity\": 1,\n\t\t\t\"customer_first_name\": \"Macy\",\n\t\t\t\"customer_last_name\": \"Stan\",\n\t\t\t\"customer_email\": \"macy.stan@example.com\"\n\t\t}]\n\t}\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/bulk_sell"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"8624e3452286a8fa583d7b3d3f007122\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"a6c10103-2b48-42f3-b38a-63d42232846a"},{"key":"X-Runtime","value":"4.261861"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"966"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"order\": {\n            \"orderid\": \"order_2bc732d4a1847cdb3d\",\n            \"order_source\": \"API\",\n            \"order_status\": \"FULFILLED\",\n            \"client_order_id\": \"ODXXXXX3112\",\n            \"order_total\": \"10.0\",\n            \"currency\": \"USD\",\n            \"created_at\": \"2024-05-09T15:04:20.000Z\",\n            \"shipping_fee\": \"0.00\",\n            \"failure_code\": null,\n            \"failure_message\": null,\n            \"shipping_details\": null,\n            \"shipping_address\": null,\n            \"billing_address\": null,\n            \"customer\": {\n                \"name\": \"Macy Stan\",\n                \"email\": \"macy.stan@example.com\",\n                \"customer_id\": \"customer_e624c41040a2bedd20\"\n            },\n            \"items\": [\n                {\n                    \"status\": \"FULFILLED\",\n                    \"quantity\": 1,\n                    \"giftcard_value\": \"10.0\",\n                    \"sender_email\": \"macy.stan@example.com\",\n                    \"receiver_email\": null,\n                    \"is_gift\": false,\n                    \"promo_code\": null,\n                    \"discounted_value\": null,\n                    \"giftcards\": [\n                        {\n                            \"card_id\": \"card_7be6e2dbc0470f71d9\",\n                            \"active\": true,\n                            \"giftcard_number\": \"7019953540069850\",\n                            \"original_value\": \"10.00\",\n                            \"balance\": \"10.00\",\n                            \"expiration_date\": \"2024-06-08\",\n                            \"currency_code\": \"USD\",\n                            \"created_at\": \"2024-05-09T15:04:20.000Z\"\n                        }\n                    ]\n                }\n            ]\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Giftcard(s) sold successfully\",\n    \"errors\": []\n}"}],"_postman_id":"b837ac67-b9a7-467e-9ec6-a283a26c0649"},{"name":"Sell Gift Card (PHYSICAL)","id":"6996d418-54e8-44e0-8b72-8463d5c14953","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"giftcard\": {\n        \"store_ref\": \"store_8412d02623ce4c1a30\",\n        \"client_order_id\": \"ODXXXXX1\",\n        \"delivery_method_name\": \"PHYSICAL\",\n        \"giftcard_number\": \"196672071893922194\",\n        \"card_denomination\": 10,\n        \"customer_first_name\": \"Macy\",\n        \"customer_last_name\": \"Stan\",\n        \"customer_email\": \"macy.stan@example.com\",\n        \"customer_phone\": \"+19754861096\",\n        \"receiver_first_name\": \"John\",\n        \"receiver_last_name\": \"Wick\",\n        \"receiver_email\": \"jhon@example.com\",\n        \"receiver_phone\": \"+19754861096\"\n    }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/sell","description":"<h3 id=\"deprecated---please-use-the-sell-gift-card---v2-endpoint\"><em><strong>Deprecated - Please use the Sell Gift Card - V2 endpoint.</strong></em></h3>\n<p>Allows selling a physical gift card.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this sell. <strong>Must be unique</strong></td>\n</tr>\n<tr>\n<td>delivery_method_name</td>\n<td><strong>Yes</strong></td>\n<td><code>PHYSICAL</code></td>\n</tr>\n<tr>\n<td>giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number to be sold.</td>\n</tr>\n<tr>\n<td>card_denomination</td>\n<td><strong>Yes</strong></td>\n<td>Gift card value.</td>\n</tr>\n<tr>\n<td>customer_first_name</td>\n<td><strong>No</strong></td>\n<td>Buyer's first name.</td>\n</tr>\n<tr>\n<td>customer_last_name</td>\n<td><strong>No</strong></td>\n<td>Buyer's last name.</td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td><strong>No</strong></td>\n<td>Buyer's email address.</td>\n</tr>\n<tr>\n<td>customer_phone</td>\n<td><strong>No</strong></td>\n<td>Buyer's phone number.</td>\n</tr>\n<tr>\n<td>client_customer_id</td>\n<td><strong>No</strong></td>\n<td>Unique customer ID from external system.</td>\n</tr>\n<tr>\n<td>receiver_first_name</td>\n<td><strong>No</strong></td>\n<td>Receiver's first name.</td>\n</tr>\n<tr>\n<td>receiver_last_name</td>\n<td><strong>No</strong></td>\n<td>Receiver's last name.</td>\n</tr>\n<tr>\n<td>receiver_email</td>\n<td><strong>No</strong></td>\n<td>Receiver's email address.</td>\n</tr>\n<tr>\n<td>receiver_phone</td>\n<td><strong>No</strong></td>\n<td>Receiver's phone number.</td>\n</tr>\n<tr>\n<td>client_receiver_id</td>\n<td><strong>No</strong></td>\n<td>Unique customer ID from external system.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note for the order.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td><code>store_ref</code>: Unique Store ID generated by 99minds.  <br /><code>client_store_id</code>: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><em>Please note that when a</em> <code>_receiver_email_</code> <em>is provided, the order will be considered as a Gift</em></p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","sell"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"9b23978d-68aa-4ec8-bbcd-78135b464c9f","name":"Sell Gift Card (PHYSICAL)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"giftcard\": {\n        \"store_ref\": \"store_0b57b8071980613bde\",\n        \"client_order_id\": \"ODXXXXX\",\n        \"delivery_method_name\": \"PHYSICAL\",\n        \"giftcard_number\": \"3609677699610877\",\n        \"card_denomination\": 50,\n        \"customer_first_name\": \"Macy\",\n        \"customer_last_name\": \"Stan\",\n        \"customer_email\": \"macy.stan@example.com\",\n        \"customer_phone\": \"+19754861096\",\n        \"receiver_first_name\": \"John\",\n        \"receiver_last_name\": \"Wick\",\n        \"receiver_email\": \"jhon@example.com\",\n        \"receiver_phone\": \"+19754861096\"\n    }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/sell"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"1abb2a1d2ba42d683f7606ca92893864\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"411a0117-88d2-485a-b4fd-eb11fde48a1d","enabled":true},{"key":"X-Runtime","value":"2.686269","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"order\": {\n            \"orderid\": \"order_323545774c2a26bf2a\",\n            \"order_source\": \"API\",\n            \"order_status\": \"FULFILLED\",\n            \"client_order_id\": \"ODXXXXX\",\n            \"order_total\": \"50.0\",\n            \"currency\": \"USD\",\n            \"created_at\": \"2021-08-11T14:52:48.000Z\",\n            \"customer\": {\n                \"name\": \"Macy Stan\",\n                \"email\": \"macy.stan@example.com\",\n                \"customer_id\": \"customer_id5c896eea4a26169df4\"\n            },\n            \"items\": [\n                {\n                    \"status\": \"FULFILLED\",\n                    \"quantity\": 1,\n                    \"giftcard_value\": \"50.0\",\n                    \"sender_email\": \"macy.stan@example.com\",\n                    \"receiver_email\": \"jhon@example.com\",\n                    \"is_gift\": true,\n                    \"promo_code\": null,\n                    \"discounted_value\": null,\n                    \"giftcards\": [\n                        {\n                            \"card_id\": \"card_310d1461d38cddaa5c\",\n                            \"active\": true,\n                            \"giftcard_number\": \"3609677699610877\",\n                            \"original_value\": \"50.00\",\n                            \"balance\": \"50.00\",\n                            \"expiration_date\": null,\n                            \"currency\": \"USD\",\n                            \"created_at\": \"2021-08-11T14:52:34.000Z\"\n                        }\n                    ]\n                }\n            ]\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Giftcard sold successfully!\",\n    \"errors\": []\n}"}],"_postman_id":"6996d418-54e8-44e0-8b72-8463d5c14953"},{"name":"Sell Gift Card (DIGITAL)","id":"bebcbf8a-c06f-4097-8e14-cc8f5b93207b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"giftcard\": {\n        \"store_ref\": \"store_8412d02623ce4c1a30\",\n        \"client_order_id\": \"ODXXXXX\",\n        \"delivery_method_name\": \"DIGITAL\",\n        \"campaign_id\": \"campaign_7b73359cc46242e533\",\n        \"card_denomination\": 100,\n        \"customer_first_name\": \"Macy\",\n        \"customer_last_name\": \"Stan\",\n        \"customer_email\": \"macy.stan@example.com\",\n        \"customer_phone\": \"+19754861096\",\n        \"receiver_first_name\": \"John\",\n        \"receiver_last_name\": \"Wick\",\n        \"receiver_email\": \"jhon@example.com\",\n        \"receiver_phone\": \"+19754861096\"\n    }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/sell","description":"<h3 id=\"deprecated---please-use-the-sell-gift-card---v2-endpoint\"><em><strong>Deprecated - Please use the Sell Gift Card - V2 endpoint.</strong></em></h3>\n<p>Allows selling a digital gift card.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this sell. <strong>Must be unique</strong></td>\n</tr>\n<tr>\n<td>delivery_method_name</td>\n<td><strong>Yes</strong></td>\n<td><code>DIGITAL</code></td>\n</tr>\n<tr>\n<td>campaign_id</td>\n<td><strong>Yes</strong></td>\n<td>Campaign ID to create gift card in.</td>\n</tr>\n<tr>\n<td>card_denomination</td>\n<td><strong>Yes</strong></td>\n<td>Gift card value.</td>\n</tr>\n<tr>\n<td>customer_first_name</td>\n<td><strong>No</strong></td>\n<td>Buyer's first name.</td>\n</tr>\n<tr>\n<td>customer_last_name</td>\n<td><strong>No</strong></td>\n<td>Buyer's last name.</td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td><strong>No</strong></td>\n<td>Buyer's email address.</td>\n</tr>\n<tr>\n<td>customer_phone</td>\n<td><strong>No</strong></td>\n<td>Buyer's phone number.</td>\n</tr>\n<tr>\n<td>client_customer_id</td>\n<td><strong>No</strong></td>\n<td>Unique customer ID from external system.</td>\n</tr>\n<tr>\n<td>receiver_first_name</td>\n<td><strong>No</strong></td>\n<td>Receiver's first name.</td>\n</tr>\n<tr>\n<td>receiver_last_name</td>\n<td><strong>No</strong></td>\n<td>Receiver's last name.</td>\n</tr>\n<tr>\n<td>receiver_email</td>\n<td><strong>No</strong></td>\n<td>Receiver's email address.</td>\n</tr>\n<tr>\n<td>receiver_phone</td>\n<td><strong>No</strong></td>\n<td>Receiver's phone number.</td>\n</tr>\n<tr>\n<td>client_receiver_id</td>\n<td><strong>No</strong></td>\n<td>Unique customer ID from external system.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note for the order.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><em>Please note that when a</em> <code>_receiver_email_</code> <em>is provided, the order will be considered as a Gift</em> </p>\n</blockquote>\n<blockquote>\n<p><em>The API doesn't currently support sending scheduled gift orders.</em></p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","sell"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"148a0415-c0f8-4121-b410-57d934bac69a","name":"Sell Gift Card (DIGITAL)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"giftcard\": {\n        \"store_ref\": \"store_0b57b8071980613bde\",\n        \"client_order_id\": \"ODXXXXX\",\n        \"delivery_method_name\": \"DIGITAL\",\n        \"campaign_id\": \"campaign_93fb1d07453f5843d8\",\n        \"card_denomination\": 100,\n        \"customer_first_name\": \"Macy\",\n        \"customer_last_name\": \"Stan\",\n        \"customer_email\": \"macy.stan@example.com\",\n        \"customer_phone\": \"+19754861096\",\n        \"receiver_first_name\": \"John\",\n        \"receiver_last_name\": \"Wick\",\n        \"receiver_email\": \"jhon@example.com\",\n        \"receiver_phone\": \"+19754861096\"\n    }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/sell"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"9f6be39195e440f63788137084bcf096\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"172dd5eb-0c48-4c51-8f75-e3701c0b8235","enabled":true},{"key":"X-Runtime","value":"5.251039","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"order\": {\n            \"orderid\": \"order_fee6d44b896dcc5246\",\n            \"order_source\": \"API\",\n            \"order_status\": \"FULFILLED\",\n            \"client_order_id\": \"ODXXXXX\",\n            \"order_total\": \"100.0\",\n            \"currency\": \"USD\",\n            \"created_at\": \"2021-08-11T14:51:26.000Z\",\n            \"customer\": {\n                \"name\": \"Macy Stan\",\n                \"email\": \"macy.stan@example.com\",\n                \"customer_id\": \"customer_id5c896eea4a26169df4\"\n            },\n            \"items\": [\n                {\n                    \"status\": \"FULFILLED\",\n                    \"quantity\": 1,\n                    \"giftcard_value\": \"100.0\",\n                    \"sender_email\": \"macy.stan@example.com\",\n                    \"receiver_email\": \"jhon@example.com\",\n                    \"is_gift\": true,\n                    \"promo_code\": null,\n                    \"discounted_value\": null,\n                    \"giftcards\": [\n                        {\n                            \"card_id\": \"card_5ae6eff3287260f0da\",\n                            \"active\": true,\n                            \"giftcard_number\": \"SK2842450644\",\n                            \"original_value\": \"100.00\",\n                            \"balance\": \"100.00\",\n                            \"expiration_date\": null,\n                            \"currency\": \"USD\",\n                            \"created_at\": \"2021-08-11T14:51:26.000Z\"\n                        }\n                    ]\n                }\n            ]\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Giftcard sold successfully!\",\n    \"errors\": []\n}"}],"_postman_id":"bebcbf8a-c06f-4097-8e14-cc8f5b93207b"},{"name":"Redeem Gift card","id":"eb5bc11d-d461-4bb2-b5f9-469e9b452fc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"giftcard\": {\n\t\"store_ref\": \"store_8412d02623ce4c1a30\",\n\t\"giftcard_number\": \"2179386532019412\",\n\t\"redemption_amount\": 2.45,\n    \"client_order_id\": \"ODXXXXX2\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/redeem","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number.</td>\n</tr>\n<tr>\n<td>giftcard_pin</td>\n<td>No</td>\n<td>Required for gift cards with PIN.</td>\n</tr>\n<tr>\n<td>redemption_amount</td>\n<td><strong>Yes</strong></td>\n<td>Amount to redeem from the gift card.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction.</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","redeem"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"97b90c05-1ef0-4f06-a78f-ea1127a9cff8","name":"Redeem Gift card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"giftcard\": {\n\t\"store_ref\": \"store_8412d02623ce4c1a30\",\n\t\"giftcard_number\": \"2179386532019412\",\n\t\"redemption_amount\": 2.45,\n    \"client_order_id\": \"ODXXXXX2\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/redeem"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"5a0c6db2f9ade9c5ce5804ae74ac2bb1\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"dc2a8690-f909-4cd3-b3c1-58df93f5bbf2","enabled":true},{"key":"X-Runtime","value":"3.527059","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"transaction\": {\n            \"card_id\": \"card_9c1f3b42fdf0275009\",\n            \"giftcard_number\": \"2179386532019412\",\n            \"expiration_date\": null,\n            \"original_value\": \"22.00\",\n            \"balance\": \"19.55\",\n            \"currency_code\": \"EUR\",\n            \"transaction_id\": \"transaction_4690575c7f24921225\",\n            \"transaction_type\": \"REDEMPTION\",\n            \"transaction_amount\": \"2.45\",\n            \"transaction_date\": \"2022-06-23T11:55:58.000Z\",\n            \"note\": null,\n            \"client_order_id\": \"ODXXXXX2\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Gift Card redeemed successfully\",\n    \"errors\": []\n}"}],"_postman_id":"eb5bc11d-d461-4bb2-b5f9-469e9b452fc2"},{"name":"Bulk Redeem Gift card","id":"23c29e37-f41f-48fa-b675-f9287bfd36a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"giftcard\": {\n\t\"store_ref\": \"store_b1e9eb7ae7873d14c6\",\n\t\"data\": [\n\t\t{\n\t\t\t\"giftcard_number\": \"S87WTAZI4J1RAS\",\n\t\t\t\"redemption_amount\": 2.45\n\t\t},\n\t\t{\n\t\t\t\"giftcard_number\": \"A1PGSHLCITAC\",\n\t\t\t\"redemption_amount\": 2.45\n\t\t}\n\t]\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/bulk_redeem","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data.giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number.</td>\n</tr>\n<tr>\n<td>data.giftcard_pin</td>\n<td>No</td>\n<td>Required for gift cards with PIN.</td>\n</tr>\n<tr>\n<td>data.redemption_amount</td>\n<td><strong>Yes</strong></td>\n<td>Amount to redeem from the gift card.</td>\n</tr>\n<tr>\n<td>data.transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Note: Do not use Bulk Redeem API when external gift card processors are connected.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","bulk_redeem"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"63b851f1-2b03-44b7-8c0c-a6417d2c19a8","name":"Bulk Redeem Gift card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"giftcard\": {\n\t\"store_ref\": \"store_b1e9eb7ae7873d14c6\",\n\t\"data\": [\n\t\t{\n\t\t\t\"giftcard_number\": \"S87WTAZI4J1RAS\",\n\t\t\t\"redemption_amount\": 2.45\n\t\t},\n\t\t{\n\t\t\t\"giftcard_number\": \"A1PGSHLCITAC\",\n\t\t\t\"redemption_amount\": 2.45\n\t\t}\n\t]\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/bulk_redeem"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"309d1e0448df90424ccc0ea3eb52b8f7\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"20648153-7a5e-4000-a292-2a6957fd07a0","enabled":true},{"key":"X-Runtime","value":"0.785747","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"transactions\": [\n            {\n                \"card_id\": \"card_1a9903f160aa70fdc5\",\n                \"giftcard_number\": \"S87WTAZI4J1RAS\",\n                \"expiration_date\": \"2023-05-19\",\n                \"original_value\": \"12.00\",\n                \"balance\": \"2.20\",\n                \"transaction_id\": \"transaction_9ad566517fa5dc4f6e\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_amount\": \"2.45\",\n                \"transaction_date\": \"2022-05-20T16:19:07.000Z\",\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_60eda0edf570b6945f\",\n                \"giftcard_number\": \"A1PGSHLCITAC\",\n                \"expiration_date\": null,\n                \"original_value\": \"21.00\",\n                \"balance\": \"5.55\",\n                \"transaction_id\": \"transaction_e8876865a5621e0dfe\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_amount\": \"2.45\",\n                \"transaction_date\": \"2022-05-20T16:19:07.000Z\",\n                \"note\": null\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Gift Card(s) redeemed successfully\",\n    \"errors\": []\n}"}],"_postman_id":"23c29e37-f41f-48fa-b675-f9287bfd36a1"},{"name":"Reload Gift card","id":"29651129-9e36-4350-b0a3-48cdb1304d86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_0b57b8071980613bde\",\n    \"giftcard_number\": \"SK3910414367\",\n    \"reload_amount\": 50,\n    \"client_order_id\": \"OD006\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/reload","description":"<p>This endpoint allows you to add more value to an existing gift card.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number.</td>\n</tr>\n<tr>\n<td>reload_amount</td>\n<td><strong>Yes</strong></td>\n<td>Amount to reload onto the gift card.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>enforce_min_max_limits</td>\n<td>No</td>\n<td>Default: <code>False</code>. When specified, the gift card balance will be validated against the <code>minimum</code> and <code>maximum</code> values defined in the campaign properties.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","reload"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"06a20604-a9d4-4d26-9fc1-af531cdb866c","name":"Reload Gift card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_0b57b8071980613bde\",\n    \"giftcard_number\": \"4551293474715270\",\n    \"reload_amount\": 50,\n    \"client_order_id\": \"OD006\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/reload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"335a63301c2ce227e54b2aa1dee229fb\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"c2a2b101-1117-418a-bb0d-ab08f9f89441","enabled":true},{"key":"X-Runtime","value":"1.052379","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"transaction\": {\n            \"card_id\": \"card_28ed41e2937efd8339\",\n            \"giftcard_number\": \"4551293474715270\",\n            \"expiration_date\": null,\n            \"transaction_id\": \"transaction_769d76a3fee160e1c2\",\n            \"transaction_type\": \"RELOAD\",\n            \"transaction_amount\": \"50.0\",\n            \"transaction_date\": \"2021-08-11T14:49:00.000Z\",\n            \"note\": null\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Giftcard reloaded!\",\n    \"errors\": []\n}"}],"_postman_id":"29651129-9e36-4350-b0a3-48cdb1304d86"},{"name":"Bulk Reload Gift card","id":"912a32df-0438-486a-812a-f9df5f1b7637","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"giftcard\": {\n\t\"store_ref\": \"store_b1e9eb7ae7873d14c6\",\n\t\"data\": [\n\t\t{\n\t\t\t\"giftcard_number\": \"FGYBRNBGV8FD1D\",\n\t\t\t\"reload_amount\": 5\n\t\t},\n\t\t{\n\t\t\t\"giftcard_number\": \"A1PGSHLCITAC\",\n\t\t\t\"reload_amount\": 2.45\n\t\t}\n\t]\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/bulk_reload","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data.giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number.</td>\n</tr>\n<tr>\n<td>data.reload_amount</td>\n<td><strong>Yes</strong></td>\n<td>Amount to reload onto the gift card.</td>\n</tr>\n<tr>\n<td>data.transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>data.enforce_min_max_limits</td>\n<td>No</td>\n<td>Default: <code>False</code>. When specified, the gift card balance will be validated against the <code>minimum</code> and <code>maximum</code> values defined in the campaign properties.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Note: Do not use Bulk Reload API when external gift card processors are connected.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","bulk_reload"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"02f5d7c5-c2a4-4cf9-913e-a30403fa2a21","name":"Bulk Reload Gift card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"giftcard\": {\n\t\"store_ref\": \"store_b1e9eb7ae7873d14c6\",\n\t\"data\": [\n\t\t{\n\t\t\t\"giftcard_number\": \"FGYBRNBGV8FD1D\",\n\t\t\t\"reload_amount\": 5\n\t\t},\n\t\t{\n\t\t\t\"giftcard_number\": \"A1PGSHLCITAC\",\n\t\t\t\"reload_amount\": 2.45\n\t\t}\n\t]\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/bulk_reload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"7a5409ffb8b8bdf0df902372c9c89c76\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"64233c7c-9f8b-49e6-bae9-f5656462e82a","enabled":true},{"key":"X-Runtime","value":"0.193006","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"transactions\": [\n            {\n                \"card_id\": \"card_f5d4880efdd4c545a7\",\n                \"giftcard_number\": \"FGYBRNBGV8FD1D\",\n                \"expiration_date\": \"2022-05-27\",\n                \"original_value\": \"21.90\",\n                \"balance\": \"21.90\",\n                \"transaction_id\": \"transaction_df02008d270f3a781f\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"5.0\",\n                \"transaction_date\": \"2022-05-20T16:30:36.000Z\",\n                \"note\": null\n            },\n            {\n                \"card_id\": \"card_60eda0edf570b6945f\",\n                \"giftcard_number\": \"A1PGSHLCITAC\",\n                \"expiration_date\": null,\n                \"original_value\": \"21.00\",\n                \"balance\": \"12.90\",\n                \"transaction_id\": \"transaction_6ac9fffcc1a2d9e40e\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"2.45\",\n                \"transaction_date\": \"2022-05-20T16:30:36.000Z\",\n                \"note\": null\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Giftcard(s) reloaded\",\n    \"errors\": []\n}"}],"_postman_id":"912a32df-0438-486a-812a-f9df5f1b7637"},{"name":"Refund Gift card","id":"ca721652-45d9-4e55-b052-358f69b49bb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_8412d02623ce4c1a30\",\n    \"giftcard_number\": \"279819217449\",\n    \"refund_amount\": 50,\n    \"client_order_id\": \"OD0061\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/refund","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number.</td>\n</tr>\n<tr>\n<td>refund_amount</td>\n<td><strong>Yes</strong></td>\n<td>Amount to refund onto the gift card.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","refund"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"eb476c5a-c639-4f07-9f03-f59470e79de3","name":"Refund Gift card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_0b57b8071980613bde\",\n    \"giftcard_number\": \"4551293474715270\",\n    \"refund_amount\": 15,\n    \"client_order_id\": \"OD006\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/refund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"60e0b0e38714b65060bc77be1ca7da3d\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"a239bc24-7bde-4885-9c05-eb80b2c3e7d4","enabled":true},{"key":"X-Runtime","value":"2.945513","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"transaction\": {\n            \"card_id\": \"card_28ed41e2937efd8339\",\n            \"giftcard_number\": \"4551293474715270\",\n            \"expiration_date\": null,\n            \"transaction_id\": \"transaction_c05e789a6ecea9e499\",\n            \"transaction_type\": \"REFUND\",\n            \"transaction_date\": \"2021-08-11T14:59:12.000Z\",\n            \"transaction_amount\": \"15.0\",\n            \"note\": null\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Amount refunded successfully!\",\n    \"errors\": []\n}"}],"_postman_id":"ca721652-45d9-4e55-b052-358f69b49bb6"},{"name":"Bulk Refund Gift card","id":"3725e2aa-8795-49e7-a449-6c71afc5804d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"giftcard\": {\n\t\"store_ref\": \"store_cf2b1c9d6f05843e5f\",\n\t\"data\": [\n\t\t{\n\t\t\t\"giftcard_number\": \"9870103857175191\",\n\t\t\t\"refund_amount\": 5\n\t\t},\n\t\t{\n\t\t\t\"giftcard_number\": \"9999935350392662\",\n\t\t\t\"refund_amount\": 2.45\n\t\t}\n\t]\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/bulk_refund","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data.giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number.</td>\n</tr>\n<tr>\n<td>data.refund_amount</td>\n<td><strong>Yes</strong></td>\n<td>Amount to reload onto the gift card.</td>\n</tr>\n<tr>\n<td>data.transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Note: Do not use Bulk Refund API when external gift card processors are connected.</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","bulk_refund"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"8b4b92ac-c34d-4f61-8efb-46e7a30294bc","name":"Bulk Refund Gift card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"giftcard\": {\n\t\"store_ref\": \"store_cf2b1c9d6f05843e5f\",\n\t\"data\": [\n\t\t{\n\t\t\t\"giftcard_number\": \"9870103857175191\",\n\t\t\t\"refund_amount\": 5\n\t\t},\n\t\t{\n\t\t\t\"giftcard_number\": \"9999935350392662\",\n\t\t\t\"refund_amount\": 2.45\n\t\t}\n\t]\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/bulk_refund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"b7987c4e5540ef9e81756d69378284d0\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"fa8e3787-f5c0-48ea-b28b-325f64a48c5f"},{"key":"X-Runtime","value":"7.843512"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"809"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"transactions\": [\n            {\n                \"card_id\": \"card_28c54cf3572bc7f387\",\n                \"giftcard_number\": \"9870103857175191\",\n                \"expiration_date\": null,\n                \"original_value\": \"28.00\",\n                \"balance\": \"28.00\",\n                \"currency_code\": \"USD\",\n                \"transaction_id\": \"transaction_e621899b410ddd5d4b\",\n                \"transaction_type\": \"REFUND\",\n                \"transaction_amount\": \"5.0\",\n                \"transaction_date\": \"2025-06-12T11:49:56.000Z\",\n                \"note\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_id\": \"card_c86aa11534c7a4d378\",\n                \"giftcard_number\": \"9999935350392662\",\n                \"expiration_date\": null,\n                \"original_value\": \"15.00\",\n                \"balance\": \"2.45\",\n                \"currency_code\": \"USD\",\n                \"transaction_id\": \"transaction_61a5fba16d79c595ea\",\n                \"transaction_type\": \"REFUND\",\n                \"transaction_amount\": \"2.45\",\n                \"transaction_date\": \"2025-06-12T11:49:56.000Z\",\n                \"note\": null,\n                \"client_order_id\": null\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Gift Card(s) refunded successfully\",\n    \"errors\": []\n}"}],"_postman_id":"3725e2aa-8795-49e7-a449-6c71afc5804d"},{"name":"Extend Expiry","id":"3cb90167-7d36-40e7-8d24-a24590e35469","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_8412d02623ce4c1a30\",\n    \"giftcard_number\": \"I2XNR6Y0\",\n    \"expiration_date\": \"2025-04-22\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/extend_expiry","description":"<p>This endpoint allows you to extend the expiration date of a gift card.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number.</td>\n</tr>\n<tr>\n<td>expiration_date</td>\n<td><strong>Yes</strong></td>\n<td>Date in <code>ISO8601</code> format specifying when to deliver the order. E.g 2023-04-14</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","extend_expiry"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"9bd9f838-7782-4ff7-91a8-b6c053f42ced","name":"Extend Expiry","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_0b57b8071980613bde\",\n    \"giftcard_number\": \"CHRIS35387430273\",\n    \"expires_at\": 1629484200\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/extend_expiry"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"65138e1ee216b79fc1889c79153fa50d\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"73abb7ee-eb6f-4fbf-99be-126fb7721c64","enabled":true},{"key":"X-Runtime","value":"1.062785","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"transaction\": {\n            \"card_id\": \"card_c55d8cbebc8c162487\",\n            \"giftcard_number\": \"CHRIS35387430273\",\n            \"expiration_date\": \"2021-08-21\",\n            \"transaction_id\": \"transaction_810d18d01e952ef091\",\n            \"transaction_type\": \"EXTEND_EXPIRY\",\n            \"transaction_date\": \"2021-08-11T14:50:39.000Z\",\n            \"note\": null\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Expiration date extended successfully!\",\n    \"errors\": []\n}"}],"_postman_id":"3cb90167-7d36-40e7-8d24-a24590e35469"},{"name":"Cashout Gift card","id":"3a1ddda1-1038-44c7-937a-e25abf51c19f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_8412d02623ce4c1a30\",\n    \"giftcard_number\": \"7037988569312022\",\n    \"giftcard_pin\": \"3897\",\n    \"client_order_id\": \"OD006\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/cashout","description":"<p>This endpoint allow users to redeem all the remaining balance of a gift card.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number.</td>\n</tr>\n<tr>\n<td>giftcard_pin</td>\n<td><strong>No</strong></td>\n<td>Required when gift card has a PIN.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","cashout"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"7d7fb1d8-0c77-4c7d-bb58-d3d70d6c801c","name":"Cashout Gift card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_8412d02623ce4c1a30\",\n    \"giftcard_number\": \"7037988569312022\",\n    \"giftcard_pin\": \"3897\",\n    \"client_order_id\": \"OD006\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/cashout"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"02a3c123d4267dd879db1fd94d90f800\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"39535b31-bfb4-4a1c-9e80-eea2e2809882"},{"key":"X-Runtime","value":"1.767757"},{"key":"vary","value":"Origin"},{"key":"x-rack-cors","value":"miss; no-origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"transaction\": {\n            \"card_id\": \"card_bf296f2391dd328980\",\n            \"giftcard_number\": \"7037988569312022\",\n            \"expiration_date\": \"2023-10-20\",\n            \"original_value\": \"20.00\",\n            \"balance\": \"0.00\",\n            \"currency_code\": \"USD\",\n            \"transaction_id\": \"transaction_a48fbc2a92baa6417a\",\n            \"transaction_type\": \"CASHOUT\",\n            \"transaction_amount\": \"20.0\",\n            \"transaction_date\": \"2023-09-29T07:32:22.000Z\",\n            \"note\": null,\n            \"client_order_id\": \"OD006\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Gift Card cashout successfully\",\n    \"errors\": []\n}"}],"_postman_id":"3a1ddda1-1038-44c7-937a-e25abf51c19f"},{"name":"Reverse Gift card","id":"7d0e3dc3-29eb-41ca-8de6-5cab17141329","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_8412d02623ce4c1a30\",\n    \"giftcard_number\": \"102477403358\",\n    \"transaction_id\": \"transaction_aff455b6f7cf82d94f\",\n    \"client_order_id\": \"OD006\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/reverse","description":"<p>This endpoint used to reverse a previous transaction associated with a gift card.<br />Only <code>REDEMPTION, REFUND, RELOAD, CASHOUT</code> transactions can be reversed.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />giftcard_number  <br />card_id</td>\n<td><strong>Yes</strong></td>\n<td>`giftcard_number`: Gift card number.  <br />`card_id`: Card ID of gift card.</td>\n</tr>\n<tr>\n<td>transaction_id</td>\n<td><strong>Depends</strong></td>\n<td>Transaction ID of the transaction to reverse.  <br /><code>Note</code>: Only <code>REDEMPTION, REFUND, RELOAD, CASHOUT transactions can be reversed.</code></td>\n</tr>\n<tr>\n<td>transaction_type</td>\n<td><strong>Depends</strong></td>\n<td>Required when `Transaction ID` is not provided. Needs to be sent along with `transation_amount`.</td>\n</tr>\n<tr>\n<td>transaction_amount</td>\n<td>Depends</td>\n<td>Required when `Transaction Type` is provided.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","reverse"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"59091a2e-5eb5-4135-ae5c-b6f5acfd3c0f","name":"Reverse Gift card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_8412d02623ce4c1a30\",\n    \"giftcard_number\": \"102477403358\",\n    \"transaction_id\": \"transaction_aff455b6f7cf82d94f\",\n    \"client_order_id\": \"OD006\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/reverse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"5b93cdbfacf95a3db40da7d1f71c704b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"c3f5e30b-61c3-46a5-9322-4f342ebc7c17"},{"key":"X-Runtime","value":"1.669234"},{"key":"vary","value":"Origin"},{"key":"x-rack-cors","value":"miss; no-origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"transaction\": {\n            \"transaction_id\": \"transaction_9f0ce2870aae80e747\",\n            \"transaction_amount\": \"5.0\",\n            \"transaction_type\": \"REVERSE\",\n            \"transaction_date\": \"2023-09-29T07:47:59.000Z\",\n            \"client_order_id\": \"OD006\",\n            \"note\": null\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Transaction has been reverse successfully\",\n    \"errors\": []\n}"}],"_postman_id":"7d0e3dc3-29eb-41ca-8de6-5cab17141329"},{"name":"Activate Gift card","id":"bbd338fd-8750-439f-b055-67434f10ead7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_cf27cbc3d24266a4a5\",\n    \"giftcard_number\": \"6866696800388799\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/activate","description":"<p>This endpoint activates a newly created gift card, making it available for use.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td><code>store_ref</code>: Unique Store ID generated by 99minds.  <br /><code>client_store_id</code>: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","activate"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"6c66a0a3-51b9-498e-86e7-8436dd666015","name":"Activate Gift card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_cf27cbc3d24266a4a5\",\n    \"giftcard_number\": \"6125161244702418\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/activate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"b0382b5ec83713cd579d45cdeaa2a70d\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"7b207950-f711-40a3-baf7-7524a9fbcef0","enabled":true},{"key":"X-Runtime","value":"1.103802","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"transaction\": {\n            \"card_id\": \"card_992f51467b868d7deb\",\n            \"giftcard_number\": \"6125161244702418\",\n            \"expiration_date\": null,\n            \"transaction_id\": \"transaction_630f68208a0d792913\",\n            \"transaction_type\": \"ACTIVATION\",\n            \"transaction_date\": \"2021-08-11T14:29:40.000Z\",\n            \"note\": null\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Giftcard activated!\",\n    \"errors\": []\n}"}],"_postman_id":"bbd338fd-8750-439f-b055-67434f10ead7"},{"name":"Deactivate Gift card","id":"b823e3c5-6d40-4fc3-9031-22732860c3ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{secretKey}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_0b57b8071980613bde\",\n    \"giftcard_number\": \"X532634XTSFHR123\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/deactivate","description":"<p>This endpoint deactivates a gift card, preventing it from being used for further transactions.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","deactivate"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"703166f6-61d3-4d80-8382-86a6a9885165","name":"Deactivate Gift card","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{secretKey}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_0b57b8071980613bde\",\n    \"giftcard_number\": \"6125161244702418\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/deactivate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"ed9a6c4036c574ebf014b768f33a0818\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"a8b99d19-8c91-4eb2-9159-d9d4e36ada7d","enabled":true},{"key":"X-Runtime","value":"0.981194","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"transaction\": {\n            \"card_id\": \"card_992f51467b868d7deb\",\n            \"giftcard_number\": \"6125161244702418\",\n            \"expiration_date\": null,\n            \"transaction_id\": \"transaction_ff0d6be0de3578f875\",\n            \"transaction_type\": \"DEACTIVATION\",\n            \"transaction_date\": \"2021-08-11T14:30:24.000Z\",\n            \"note\": null\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Giftcard deactivated!\",\n    \"errors\": []\n}"}],"_postman_id":"b823e3c5-6d40-4fc3-9031-22732860c3ec"},{"name":"Block Gift card","id":"3bacfa9f-e784-4f68-a283-40b545d0e500","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_0b57b8071980613bde\",\n    \"giftcard_number\": \"SK3910414367\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/block","description":"<p>This endpoint blocks a gift card, potentially due to fraud or security concerns.</p>\n<p>Blocking a card does not change the balance on the card.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","block"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"3b6ea16c-37c8-47ff-ad3f-2761f172ba34","name":"Block Gift card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_0b57b8071980613bde\",\n    \"giftcard_number\": \"6125161244702418\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/block"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"6d0f622646071cd8d8dd236ddf30e574\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"57ea08d0-a9c2-4af3-b33f-3c9ba187e3cb","enabled":true},{"key":"X-Runtime","value":"1.132373","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"transaction\": {\n            \"card_id\": \"card_992f51467b868d7deb\",\n            \"giftcard_number\": \"6125161244702418\",\n            \"expiration_date\": null,\n            \"transaction_id\": \"transaction_6ecd5fadc83d2236d5\",\n            \"transaction_type\": \"BLOCK\",\n            \"transaction_date\": \"2021-08-11T14:40:12.000Z\",\n            \"note\": null\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Giftcard blocked!\",\n    \"errors\": []\n}"}],"_postman_id":"3bacfa9f-e784-4f68-a283-40b545d0e500"},{"name":"Void Gift card","id":"88a5e461-425f-400e-a1ff-475417f73b85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_0b57b8071980613bde\",\n    \"giftcard_number\": \"SK3910414367\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/void","description":"<p>This endpoint voids a gift card, rendering it unusable and invalid.<br />Voiding a card also changes the balance of the card to 0.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","void"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"833e66a4-75de-4905-be7a-bbf29eaa8746","name":"Void Gift card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"giftcard\":\n  {\n    \"store_ref\": \"store_0b57b8071980613bde\",\n    \"giftcard_number\": \"SK1490127454\"\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/void"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"aa205daec50762c703d3815838d23bf4\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"32b81248-ed8e-484d-8b7a-c3750afc08db","enabled":true},{"key":"X-Runtime","value":"1.750302","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"transaction\": {\n            \"card_id\": \"card_68f53bd226bc1988b8\",\n            \"giftcard_number\": \"SK1490127454\",\n            \"expiration_date\": null,\n            \"transaction_id\": \"transaction_89c71d9e91bba9051f\",\n            \"transaction_type\": \"VOID\",\n            \"transaction_date\": \"2021-08-11T14:47:56.000Z\",\n            \"note\": null\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Giftcard voided\",\n    \"errors\": []\n}"}],"_postman_id":"88a5e461-425f-400e-a1ff-475417f73b85"},{"name":"Adjustment - Manual Credit","id":"c80024db-7239-48a1-81e9-8b1bb1322b24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"giftcard\": {\n        \"store_ref\": \"store_8412d02623ce4c1a30\",\n        \"giftcard_number\": \"W7ONOHSN\",\n        \"transaction_amount\": 25\n    }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/manual_credit","description":"<p>This endpoint allows you to add more value to an existing gift card.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number.</td>\n</tr>\n<tr>\n<td>transaction_amount</td>\n<td><strong>Yes</strong></td>\n<td>Amount to credit onto the gift card.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","manual_credit"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"1470b4de-8a3c-4fc7-bed5-3bb99cdfa1bd","name":"Adjustment - Manual Credit","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"giftcard\": {\n        \"store_ref\": \"store_8412d02623ce4c1a30\",\n        \"giftcard_number\": \"W7ONOHSN\",\n        \"transaction_amount\": 25\n    }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/manual_credit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"e73efb457b6123745fe1a78443320a72\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"dd09d471-4cb9-4c0e-a15b-fe7eab43f693"},{"key":"X-Runtime","value":"1.056023"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"467"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"transaction\": {\n            \"card_id\": \"card_5dfda650325159255a\",\n            \"giftcard_number\": \"W7ONOHSN\",\n            \"expiration_date\": null,\n            \"original_value\": \"85.00\",\n            \"balance\": \"85.00\",\n            \"currency_code\": \"USD\",\n            \"transaction_id\": \"transaction_03709bc9c288898c62\",\n            \"transaction_type\": \"MANUAL_CREDIT\",\n            \"transaction_amount\": \"25.0\",\n            \"transaction_date\": \"2024-07-31T14:20:20.000Z\",\n            \"transaction_description\": null,\n            \"client_order_id\": null\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Giftcard balance updated!\",\n    \"errors\": []\n}"}],"_postman_id":"c80024db-7239-48a1-81e9-8b1bb1322b24"},{"name":"Adjustment - Manual Debit","id":"adf87de6-485c-47f7-bcc1-ab54396060ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"giftcard\": {\n\t\"store_ref\": \"store_8412d02623ce4c1a30\",\n\t\"giftcard_number\": \"W7ONOHSN\",\n\t\"transaction_amount\": 15\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/manual_debit","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>giftcard_number</td>\n<td><strong>Yes</strong></td>\n<td>Gift card number.</td>\n</tr>\n<tr>\n<td>transaction_amount</td>\n<td><strong>Yes</strong></td>\n<td>Amount to debit from the gift card.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction.</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","giftcards","manual_debit"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"bfb234cc-d75f-4922-920c-dfb8ba3cb442","name":"Adjustment - Manual Credit","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"giftcard\": {\n\t\"store_ref\": \"store_8412d02623ce4c1a30\",\n\t\"giftcard_number\": \"W7ONOHSN\",\n\t\"transaction_amount\": 15\n  }\n}"},"url":"https://api.giftcard.99minds.io/api/v1/giftcards/manual_debit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"d3ad81159f22b6c44d84d93e43746d3b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"984284e1-252f-42ac-b738-7915ae0c88e6"},{"key":"X-Runtime","value":"0.674041"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"466"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"transaction\": {\n            \"card_id\": \"card_5dfda650325159255a\",\n            \"giftcard_number\": \"W7ONOHSN\",\n            \"expiration_date\": null,\n            \"original_value\": \"85.00\",\n            \"balance\": \"70.00\",\n            \"currency_code\": \"USD\",\n            \"transaction_id\": \"transaction_9ee8ec7d887cccaaf3\",\n            \"transaction_type\": \"MANUAL_DEBIT\",\n            \"transaction_amount\": \"15.0\",\n            \"transaction_date\": \"2024-07-31T14:22:34.000Z\",\n            \"transaction_description\": null,\n            \"client_order_id\": null\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Giftcard balance updated!\",\n    \"errors\": []\n}"}],"_postman_id":"adf87de6-485c-47f7-bcc1-ab54396060ff"}],"id":"ad749dc2-9ea6-4205-99aa-299f035f114b","description":"<p>These endpoints return details about Gift cards.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"9dffe9db-3efb-4542-b540-3f42bb440de9"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"09669b3c-35fa-4cc8-ae3d-77ac8640e917"}}],"_postman_id":"ad749dc2-9ea6-4205-99aa-299f035f114b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}}},{"name":"Gift Card Campaigns","item":[{"name":"Get Campaigns","id":"a39fd739-2349-4dd4-bbf2-ad9da2954815","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/campaigns","description":"<p>This endpoint retrieves a list of gift card campaigns.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_no</td>\n<td><strong>Yes</strong></td>\n<td>Page no &gt; 0.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td><code>asc</code> or <code>desc</code>. Default <code>desc</code></td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of gift card</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of gift card</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","campaigns"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"01d94913-6975-408a-b82e-3c289646181a","name":"Get Campaigns","originalRequest":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/campaigns"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"8e7758ee9363cfd9e2f46351886ba54b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"e07bb1f6-0cf1-4b42-bf1b-c6486b83d6a5"},{"key":"X-Runtime","value":"0.019518"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"37456"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"total_records\": 83,\n        \"total_pages\": 2,\n        \"current_page\": 1,\n        \"next_page\": 2,\n        \"prev_page\": null,\n        \"version\": {\n            \"min\": 48,\n            \"max\": 180\n        },\n        \"campaigns\": [\n            {\n                \"active\": true,\n                \"campaign_name\": \"Digital Zero Value\",\n                \"campaign_id\": \"campaign_0ea231ce6a74e61db2\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": false,\n                \"activation_required_flag\": true,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": true,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 0,\n                \"max_init_amount\": 1000,\n                \"expiration_period\": -1,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 8,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2023-07-06T14:37:38.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"doboz-Fiserve\",\n                \"campaign_id\": \"campaign_e0a8b4512cd0f13bf0\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": false,\n                \"activation_required_flag\": true,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": true,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"1234\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 1000,\n                \"expiration_period\": -1,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 8,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2023-03-21T14:16:37.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Butter Cookies Promo\",\n                \"campaign_id\": \"campaign_fde2ae38a6a416a038\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": true,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"PROMO\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 50,\n                \"expiration_period\": 180,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 12,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2022-08-10T23:29:29.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Butter Cookies Import\",\n                \"campaign_id\": \"campaign_b574e75f17dd04e647\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 1000,\n                \"expiration_period\": -1,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"PHYSICAL\",\n                \"barcode_type\": null,\n                \"card_length\": 18,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2022-08-10T23:27:55.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Birthday\",\n                \"campaign_id\": \"campaign_dadb78e9425533c03e\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"BDAY\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 100,\n                \"expiration_period\": 90,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 12,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2022-08-05T21:09:21.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Zero Value\",\n                \"campaign_id\": \"campaign_680ad6558c727ebb35\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": false,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": true,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 0,\n                \"max_init_amount\": 1000,\n                \"expiration_period\": 1095,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"PHYSICAL\",\n                \"barcode_type\": null,\n                \"card_length\": 12,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2022-06-27T20:54:42.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Staging Giftcard\",\n                \"campaign_id\": \"campaign_ca9654942f8d509908\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": true,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"SG\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 100,\n                \"expiration_period\": 90,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2022-06-24T06:02:02.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"SQUAREUP-Default Test Account-USD-PHYSICAL-Campaign\",\n                \"campaign_id\": \"campaign_ba0fddbf81c08a71ef\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": true,\n                \"barcode_required_flag\": true,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 0,\n                \"max_init_amount\": 10000,\n                \"expiration_period\": -1,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"PHYSICAL\",\n                \"barcode_type\": \"CODE_25\",\n                \"card_length\": 12,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2022-06-23T07:46:58.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Curtis Father Day\",\n                \"campaign_id\": \"campaign_e0840cccd39517a1f7\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 50,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"PHYSICAL\",\n                \"barcode_type\": null,\n                \"card_length\": 12,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"ALPHABETS_ONLY\",\n                \"created_at\": \"2022-06-10T18:16:15.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"FlynGC\",\n                \"campaign_id\": \"campaign_473ce8c0653d178e4c\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": false,\n                \"activation_required_flag\": true,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"61738869\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 1000,\n                \"expiration_period\": -1,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"PHYSICAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2022-06-10T03:01:17.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Amazon Gift Card\",\n                \"campaign_id\": \"campaign_1e9655a9a3a955c8a6\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 10000,\n                \"expiration_period\": -1,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2022-06-06T19:39:10.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Pinstripes Digital Gift Card Promo\",\n                \"campaign_id\": \"campaign_06f56830bb091f547b\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 20,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 8,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2022-05-25T21:10:25.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Mother's Day Promotion\",\n                \"campaign_id\": \"campaign_fad81ae156c285d134\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"VIC\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 100,\n                \"expiration_period\": 15,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 8,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2022-05-03T13:31:44.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Test Physical\",\n                \"campaign_id\": \"campaign_b7a345571aa4486776\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": false,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 1000,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"PHYSICAL\",\n                \"barcode_type\": null,\n                \"card_length\": 8,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2022-04-26T13:08:38.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Test FirstCamp test\",\n                \"campaign_id\": \"campaign_bf08cd90332827a4c0\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 50,\n                \"expiration_period\": 1095,\n                \"giftcard_unit_id\": 4,\n                \"currency\": \"United Arab Emirates Dirham\",\n                \"currency_code\": \"AED\",\n                \"currency_symbol\": \"د.إ\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 8,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2022-04-25T14:32:51.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"D1CT1\",\n                \"campaign_id\": \"campaign_bfcf79f277ce3063f0\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 10,\n                \"max_init_amount\": 500,\n                \"expiration_period\": 5,\n                \"giftcard_unit_id\": 4,\n                \"currency\": \"United Arab Emirates Dirham\",\n                \"currency_code\": \"AED\",\n                \"currency_symbol\": \"د.إ\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 8,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2022-04-25T14:31:28.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Campaign check test\",\n                \"campaign_id\": \"campaign_6cea313780f7f83c6d\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": true,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 10,\n                \"max_init_amount\": 500,\n                \"expiration_period\": 5,\n                \"giftcard_unit_id\": 4,\n                \"currency\": \"United Arab Emirates Dirham\",\n                \"currency_code\": \"AED\",\n                \"currency_symbol\": \"د.إ\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": \"CODE_39\",\n                \"card_length\": 8,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2022-04-25T14:29:24.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Black Friday Sale\",\n                \"campaign_id\": \"campaign_72610437b952e08e97\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": false,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": true,\n                \"barcode_required_flag\": true,\n                \"separator_flag\": false,\n                \"prefix\": \"BF\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 100,\n                \"expiration_period\": -1,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": \"CODE_39\",\n                \"card_length\": 8,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2022-04-20T09:35:50.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Runit Physical Gift Card\",\n                \"campaign_id\": \"campaign_6278b913a51c746bf9\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": false,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 1000,\n                \"expiration_period\": -1,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"PHYSICAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2021-11-18T18:30:38.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Thanks Giving 2021 PRomotions\",\n                \"campaign_id\": \"campaign_2c3279bf17a6833558\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"PROMO\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 100,\n                \"expiration_period\": 180,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"PHYSICAL\",\n                \"barcode_type\": null,\n                \"card_length\": 12,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2021-11-11T16:32:32.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Retail PRO Christmas\",\n                \"campaign_id\": \"campaign_9587d4aa7285cb3d55\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": false,\n                \"activation_required_flag\": true,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": true,\n                \"barcode_required_flag\": true,\n                \"separator_flag\": false,\n                \"prefix\": \"9999\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 100,\n                \"expiration_period\": -1,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"PHYSICAL\",\n                \"barcode_type\": \"QR_CODE\",\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2021-11-09T17:19:32.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"RetailPRO Physical Gift Card\",\n                \"campaign_id\": \"campaign_66aefd3cbc01bee2b0\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": false,\n                \"activation_required_flag\": true,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": true,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 500,\n                \"expiration_period\": -1,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"PHYSICAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2021-11-09T16:44:10.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Christmas Promotion 2021\",\n                \"campaign_id\": \"campaign_61f07049e2a77db7a6\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"PROMO\",\n                \"min_init_amount\": 5,\n                \"max_init_amount\": 46,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2021-11-08T21:58:01.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Thanks Giving 2021 Give Away\",\n                \"campaign_id\": \"campaign_7d103fcdb742e8f973\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"PROMO\",\n                \"min_init_amount\": 5,\n                \"max_init_amount\": 100,\n                \"expiration_period\": 90,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2021-11-02T20:49:56.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Towne Test Campaign\",\n                \"campaign_id\": \"campaign_a5cf51f5921658c5b9\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"987010\",\n                \"min_init_amount\": 25,\n                \"max_init_amount\": 100,\n                \"expiration_period\": -1,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-11-02T17:43:46.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Christmas Promotion 21\",\n                \"campaign_id\": \"campaign_6b7aab752e2a48a6c6\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"PROMO\",\n                \"min_init_amount\": 5,\n                \"max_init_amount\": 50,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2021-10-22T13:39:48.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Towne Gift card\",\n                \"campaign_id\": \"campaign_0678e9cca88a262db7\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": true,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"1111\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 1000,\n                \"expiration_period\": -1,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-10-15T16:26:18.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Thanks Giving 2021\",\n                \"campaign_id\": \"campaign_e34a633d10e7791524\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 5,\n                \"max_init_amount\": 50,\n                \"expiration_period\": 90,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-09-01T15:03:00.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Christmas Promotion\",\n                \"campaign_id\": \"campaign_67c10f5b85336b140a\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"PROMO\",\n                \"min_init_amount\": 5,\n                \"max_init_amount\": 25,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-08-25T16:20:45.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Migration Campaign\",\n                \"campaign_id\": \"campaign_bd2372691daa072a86\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": true,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 1000,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"PHYSICAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-08-24T18:39:51.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Birthday Promotion September\",\n                \"campaign_id\": \"campaign_e22f39078aa21570af\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"SEPT\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 50,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-08-23T16:32:42.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"RetailPRo Test\",\n                \"campaign_id\": \"campaign_32d5f9b033fdc5c967\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 50,\n                \"expiration_period\": -1,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"PHYSICAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-08-14T12:27:11.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Pinstripe Promotion\",\n                \"campaign_id\": \"campaign_9b896c0ad9a075d29c\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": true,\n                \"separator_flag\": false,\n                \"prefix\": \"111111\",\n                \"min_init_amount\": 20,\n                \"max_init_amount\": 100,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": \"CODE_25\",\n                \"card_length\": 20,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-08-10T17:43:04.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"TumblTrak\",\n                \"campaign_id\": \"campaign_8ff1b3fad7a04af6ed\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"PROMO\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 100,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-08-04T18:13:33.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Merry Christmas 2021 -Physical\",\n                \"campaign_id\": \"campaign_7bc619f597d728eae8\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": true,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"MERY\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 500,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"PHYSICAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2021-08-02T19:18:22.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"AllBirds Summer Campaign\",\n                \"campaign_id\": \"campaign_de6f9fb60e2486aac3\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"ALLB\",\n                \"min_init_amount\": 5,\n                \"max_init_amount\": 500,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2021-07-27T19:46:00.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"ForeverLUX Promotional\",\n                \"campaign_id\": \"campaign_8e6cb1c31a48d1cbc3\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"GIFT\",\n                \"min_init_amount\": 5,\n                \"max_init_amount\": 49,\n                \"expiration_period\": 90,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2021-07-23T15:08:49.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Holiday\",\n                \"campaign_id\": \"campaign_619d184db78b6c6cc1\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"3042\",\n                \"min_init_amount\": 5,\n                \"max_init_amount\": 1000,\n                \"expiration_period\": -1,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-07-22T16:53:02.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"RunIT Promotional Campaign\",\n                \"campaign_id\": \"campaign_6da296825630456a79\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"PROMO\",\n                \"min_init_amount\": 5,\n                \"max_init_amount\": 50,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-07-12T18:13:25.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Trainerswarehouse Promotional\",\n                \"campaign_id\": \"campaign_44ad1b8982e430ca8d\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"TWHP\",\n                \"min_init_amount\": 5,\n                \"max_init_amount\": 50,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-07-09T13:50:13.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Test\",\n                \"campaign_id\": \"campaign_1ee0fa079d09d9e879\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": true,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": true,\n                \"separator_flag\": false,\n                \"prefix\": \"TESTASDFFDAFASF\",\n                \"min_init_amount\": 10,\n                \"max_init_amount\": 20,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": \"CODE_25_INTERLEAVED\",\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2021-07-08T19:15:05.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Heartland Promotional & Gift Card\",\n                \"campaign_id\": \"campaign_fa03364b445dec448f\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"70\",\n                \"min_init_amount\": 5,\n                \"max_init_amount\": 50,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-07-06T17:28:41.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"VEND-99mindsinc-USD-PHYSICAL\",\n                \"campaign_id\": \"campaign_88122025ea0faae763\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": true,\n                \"separator_flag\": false,\n                \"prefix\": \"VEND\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 2,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 3,\n                \"currency\": \"Indian Rupee\",\n                \"currency_code\": \"INR\",\n                \"currency_symbol\": \"₹\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": \"CODE_25\",\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-06-29T08:46:28.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"VEND 99mindsinc\",\n                \"campaign_id\": \"campaign_450a0ae1e779554a8b\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"VEND\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 5,\n                \"expiration_period\": 180,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"PHYSICAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-06-29T08:45:11.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Promotional Campaign\",\n                \"campaign_id\": \"campaign_ecb0f5f334d1c5f265\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"PROMO\",\n                \"min_init_amount\": 10,\n                \"max_init_amount\": 20,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": \"CODE_25\",\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-06-23T17:43:44.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"HeartLandRetail-USD-99MINDSINC-Campaign\",\n                \"campaign_id\": \"campaign_834871c1c133ca7e28\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": false,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": true,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": null,\n                \"min_init_amount\": 0,\n                \"max_init_amount\": 10000,\n                \"expiration_period\": -1,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"PHYSICAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-06-23T08:29:33.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"testing-rohit\",\n                \"campaign_id\": \"campaign_e9f208a255d0fb41ea\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": true,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": true,\n                \"separator_flag\": false,\n                \"prefix\": \"123\",\n                \"min_init_amount\": 100,\n                \"max_init_amount\": 1000,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": \"CODE_25\",\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-06-23T06:45:26.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"1212\",\n                \"campaign_id\": \"campaign_d0dbfdf66e4e98f87f\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": false,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"45\",\n                \"min_init_amount\": 10,\n                \"max_init_amount\": 200,\n                \"expiration_period\": 90,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 11,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"IN-STORE\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n                \"created_at\": \"2021-06-22T19:52:48.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Ancient Faith\",\n                \"campaign_id\": \"campaign_9ded347e03de259dd5\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"ANCI\",\n                \"min_init_amount\": 5,\n                \"max_init_amount\": 25,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-06-22T16:46:44.000Z\"\n            },\n            {\n                \"active\": true,\n                \"campaign_name\": \"Birthday Month Promotions\",\n                \"campaign_id\": \"campaign_d7adf794305e973caa\",\n                \"pin_required_flag\": false,\n                \"preloaded_card_flag\": true,\n                \"activation_required_flag\": false,\n                \"flex_init_amount_flag\": true,\n                \"one_time_use_flag\": true,\n                \"reloadable_card_flag\": false,\n                \"barcode_required_flag\": false,\n                \"separator_flag\": false,\n                \"prefix\": \"PROMO\",\n                \"min_init_amount\": 1,\n                \"max_init_amount\": 100,\n                \"expiration_period\": 30,\n                \"giftcard_unit_id\": 1,\n                \"currency\": \"United States Dollar\",\n                \"currency_code\": \"USD\",\n                \"currency_symbol\": \"$\",\n                \"delivery_mode\": \"DIGITAL\",\n                \"barcode_type\": null,\n                \"card_length\": 16,\n                \"gs1_application_identifier\": null,\n                \"campaign_type\": \"PROMOTIONAL\",\n                \"archived\": false,\n                \"no_of_characters\": null,\n                \"character_set\": \"NUMBERS_ONLY\",\n                \"created_at\": \"2021-06-21T21:46:35.000Z\"\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"a39fd739-2349-4dd4-bbf2-ad9da2954815"},{"name":"Get Campaign Details","id":"5fbb572a-863f-4f72-a1c8-6f37cb32b3bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/campaigns/campaign_0ea231ce6a74e61db2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","campaigns","campaign_0ea231ce6a74e61db2"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"563847a1-0425-4054-a43c-6d790b27e7b3","name":"Get Campaign Details","originalRequest":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/campaigns/campaign_0ea231ce6a74e61db2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"29ddaca0a4e61973a04c93c74e910f65\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"f9687e35-14a0-4646-9296-833adb000ac8"},{"key":"X-Runtime","value":"0.181346"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"campaign\": {\n            \"active\": true,\n            \"campaign_name\": \"Digital Zero Value\",\n            \"campaign_id\": \"campaign_0ea231ce6a74e61db2\",\n            \"pin_required_flag\": false,\n            \"preloaded_card_flag\": false,\n            \"activation_required_flag\": true,\n            \"flex_init_amount_flag\": false,\n            \"one_time_use_flag\": false,\n            \"reloadable_card_flag\": true,\n            \"credit_note_flag\": false,\n            \"dynamic_allocation_flag\": false,\n            \"barcode_required_flag\": false,\n            \"separator_flag\": false,\n            \"prefix\": null,\n            \"min_init_amount\": \"0.00\",\n            \"max_init_amount\": \"1000.00\",\n            \"expiration_period\": -1,\n            \"giftcard_unit_id\": 1,\n            \"currency\": \"United States Dollar\",\n            \"currency_code\": \"USD\",\n            \"currency_symbol\": \"$\",\n            \"delivery_mode\": \"DIGITAL\",\n            \"barcode_type\": null,\n            \"card_length\": 8,\n            \"gs1_application_identifier\": null,\n            \"campaign_type\": \"IN-STORE\",\n            \"archived\": false,\n            \"no_of_characters\": null,\n            \"character_set\": \"NUMBERS_AND_ALPHABETS\",\n            \"created_at\": \"2023-07-06T14:37:38.000Z\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"5fbb572a-863f-4f72-a1c8-6f37cb32b3bd"}],"id":"05fa8fe4-8394-4c32-bb6c-c0232afdb128","_postman_id":"05fa8fe4-8394-4c32-bb6c-c0232afdb128","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}}},{"name":"Orders","item":[{"name":"Get Orders","id":"b4bcc6bb-3bbe-441f-b51f-b4c11a7aae88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.giftcard.99minds.io/api/v1/orders?page_no=1","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_no</td>\n<td><strong>Yes</strong></td>\n<td>Page no &gt; 0.</td>\n</tr>\n<tr>\n<td>customer_id</td>\n<td><strong>No</strong></td>\n<td>99minds generated customer id</td>\n</tr>\n<tr>\n<td>client_customer_id</td>\n<td><strong>No</strong></td>\n<td>Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.</td>\n</tr>\n<tr>\n<td>client_customer_platform</td>\n<td><strong>No</strong></td>\n<td>Any one of the supported platforms. <code>client_customer_platform</code> should be passed in along with <code>client_customer_id</code> for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID linked to the transaction.</td>\n</tr>\n<tr>\n<td>currency_code</td>\n<td>No</td>\n<td>3-letter ISO 4217 currency code. e.g, <code>USD, EUR</code></td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td><code>asc</code> or <code>desc</code>. Default <code>desc</code></td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of order</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of order</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","orders"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"page_no","value":"1"}],"variable":[]}},"response":[{"id":"9996d64e-3d68-4d2a-a432-78223ee5f3f7","name":"Get Orders","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.giftcard.99minds.io/api/v1/orders?page_no=1","host":["https://api.giftcard.99minds.io"],"path":["api","v1","orders"],"query":[{"key":"page_no","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"50b65b0244dc5b711ecf1d7d612227a2\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"d4cda36c-41d4-48c8-b5e6-b2dbee99a060","enabled":true},{"key":"X-Runtime","value":"0.080427","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"total_records\": 292,\n        \"total_pages\": 3,\n        \"current_page\": 1,\n        \"next_page\": 2,\n        \"prev_page\": null,\n        \"version\": {\n            \"min\": 701,\n            \"max\": 962\n        },\n        \"orders\": [\n            {\n                \"orderid\": \"order_e2f97d69c514ddb49f\",\n                \"order_source\": \"API\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"ODXXXXX\",\n                \"order_total\": \"100.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-10-11T11:36:21.000Z\",\n                \"customer\": {\n                    \"name\": \"Macy Stan\",\n                    \"email\": \"macy.stan@example.com\",\n                    \"customer_id\": \"customer_id5c896eea4a26169df4\"\n                }\n            },\n            {\n                \"orderid\": \"order_202db4baec83f12aef\",\n                \"order_source\": \"API\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"ODXXXXX\",\n                \"order_total\": \"100.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-10-11T11:35:19.000Z\",\n                \"customer\": {\n                    \"name\": \"Macy Stan\",\n                    \"email\": \"macy.stan@example.com\",\n                    \"customer_id\": \"customer_id5c896eea4a26169df4\"\n                }\n            },\n            {\n                \"orderid\": \"order_6466d4e02e376b9bfe\",\n                \"order_source\": \"API\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"ODXXXXX\",\n                \"order_total\": \"100.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-10-11T11:34:57.000Z\",\n                \"customer\": {\n                    \"name\": \"Macy Stan\",\n                    \"email\": \"macy.stan@example.com\",\n                    \"customer_id\": \"customer_id5c896eea4a26169df4\"\n                }\n            },\n            {\n                \"orderid\": \"order_3d3683b2fef5547991\",\n                \"order_source\": \"API\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"ODXXXXX\",\n                \"order_total\": \"100.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-10-11T11:30:31.000Z\",\n                \"customer\": {\n                    \"name\": \"Macy Stan\",\n                    \"email\": \"macy.stan@example.com\",\n                    \"customer_id\": \"customer_id5c896eea4a26169df4\"\n                }\n            },\n            {\n                \"orderid\": \"order_4cce8b96d5de31c0cc\",\n                \"order_source\": \"UNKNOWN\",\n                \"order_status\": \"PENDING\",\n                \"client_order_id\": null,\n                \"order_total\": \"40.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-08-12T20:09:05.000Z\",\n                \"customer\": {\n                    \"name\": \"Mrudul\",\n                    \"email\": \"keys@99minds.io\",\n                    \"customer_id\": \"customer_idce65f93aab080ab5bb\"\n                }\n            },\n            {\n                \"orderid\": \"order_185e05e5a522629807\",\n                \"order_source\": \"UNKNOWN\",\n                \"order_status\": \"PENDING\",\n                \"client_order_id\": null,\n                \"order_total\": \"20.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-08-12T19:57:52.000Z\",\n                \"customer\": {\n                    \"name\": \"Mrudul\",\n                    \"email\": \"keys@99minds.io\",\n                    \"customer_id\": \"customer_idce65f93aab080ab5bb\"\n                }\n            },\n            {\n                \"orderid\": \"order_add6f03c84023498d0\",\n                \"order_source\": \"UNKNOWN\",\n                \"order_status\": \"PENDING\",\n                \"client_order_id\": null,\n                \"order_total\": \"20.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-08-12T19:54:14.000Z\",\n                \"customer\": {\n                    \"name\": \"Mrudul\",\n                    \"email\": \"keys@99minds.io\",\n                    \"customer_id\": \"customer_idce65f93aab080ab5bb\"\n                }\n            },\n            {\n                \"orderid\": \"order_e19412e9c2693f8cd8\",\n                \"order_source\": \"UNKNOWN\",\n                \"order_status\": \"PENDING\",\n                \"client_order_id\": null,\n                \"order_total\": \"20.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-08-12T19:52:47.000Z\",\n                \"customer\": {\n                    \"name\": \"Mrudul\",\n                    \"email\": \"keys@99minds.io\",\n                    \"customer_id\": \"customer_idce65f93aab080ab5bb\"\n                }\n            },\n            {\n                \"orderid\": \"order_cc57ac324758f61dde\",\n                \"order_source\": \"UNKNOWN\",\n                \"order_status\": \"PENDING\",\n                \"client_order_id\": null,\n                \"order_total\": \"20.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-08-12T19:52:04.000Z\",\n                \"customer\": {\n                    \"name\": \"Mrudul\",\n                    \"email\": \"keys@99minds.io\",\n                    \"customer_id\": \"customer_idce65f93aab080ab5bb\"\n                }\n            },\n            {\n                \"orderid\": \"order_806fbed14235a3391c\",\n                \"order_source\": \"UNKNOWN\",\n                \"order_status\": \"PENDING\",\n                \"client_order_id\": null,\n                \"order_total\": \"20.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-08-12T19:51:24.000Z\",\n                \"customer\": {\n                    \"name\": \"Mrudul\",\n                    \"email\": \"keys@99minds.io\",\n                    \"customer_id\": \"customer_idce65f93aab080ab5bb\"\n                }\n            },\n            {\n                \"orderid\": \"order_5f593a18260a4931d8\",\n                \"order_source\": \"UNKNOWN\",\n                \"order_status\": \"PENDING\",\n                \"client_order_id\": null,\n                \"order_total\": \"20.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-08-12T19:48:40.000Z\",\n                \"customer\": {\n                    \"name\": \"Mrudul\",\n                    \"email\": \"keys@99minds.io\",\n                    \"customer_id\": \"customer_idce65f93aab080ab5bb\"\n                }\n            },\n            {\n                \"orderid\": \"order_c05e8a26affa23b2ac\",\n                \"order_source\": \"UNKNOWN\",\n                \"order_status\": \"PENDING\",\n                \"client_order_id\": null,\n                \"order_total\": \"20.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-08-12T19:46:40.000Z\",\n                \"customer\": {\n                    \"name\": \"Mrudul\",\n                    \"email\": \"keys@99minds.io\",\n                    \"customer_id\": \"customer_idce65f93aab080ab5bb\"\n                }\n            },\n            {\n                \"orderid\": \"order_05ed7e2183ca662997\",\n                \"order_source\": \"UNKNOWN\",\n                \"order_status\": \"PENDING\",\n                \"client_order_id\": null,\n                \"order_total\": \"20.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-08-12T19:36:15.000Z\",\n                \"customer\": {\n                    \"name\": \"Mrudul\",\n                    \"email\": \"keys@99minds.io\",\n                    \"customer_id\": \"customer_idce65f93aab080ab5bb\"\n                }\n            },\n            {\n                \"orderid\": \"order_3b7f5286c869d289b0\",\n                \"order_source\": \"UNKNOWN\",\n                \"order_status\": \"PENDING\",\n                \"client_order_id\": null,\n                \"order_total\": \"20.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-08-12T19:23:17.000Z\",\n                \"customer\": {\n                    \"name\": \"Mrudul\",\n                    \"email\": \"keys@99minds.io\",\n                    \"customer_id\": \"customer_idce65f93aab080ab5bb\"\n                }\n            },\n            {\n                \"orderid\": \"order_323545774c2a26bf2a\",\n                \"order_source\": \"API\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"ODXXXXX\",\n                \"order_total\": \"50.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-08-11T14:52:48.000Z\",\n                \"customer\": {\n                    \"name\": \"Macy Stan\",\n                    \"email\": \"macy.stan@example.com\",\n                    \"customer_id\": \"customer_id5c896eea4a26169df4\"\n                }\n            },\n            {\n                \"orderid\": \"order_fee6d44b896dcc5246\",\n                \"order_source\": \"API\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"ODXXXXX\",\n                \"order_total\": \"100.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-08-11T14:51:26.000Z\",\n                \"customer\": {\n                    \"name\": \"Macy Stan\",\n                    \"email\": \"macy.stan@example.com\",\n                    \"customer_id\": \"customer_id5c896eea4a26169df4\"\n                }\n            },\n            {\n                \"orderid\": \"order_0d40e4a2c623700e12\",\n                \"order_source\": \"WEBPOS\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": null,\n                \"order_total\": \"25.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-08-03T13:44:27.000Z\",\n                \"customer\": {\n                    \"name\": \"M T\",\n                    \"email\": \"asd@asd.com\",\n                    \"customer_id\": \"customer_idaec1bbc554493713bc\"\n                }\n            },\n            {\n                \"orderid\": \"order_0da6faf1e018b8aa3a\",\n                \"order_source\": \"SHOPIFY\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"3739169980548\",\n                \"order_total\": \"20.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-06-17T17:57:02.000Z\",\n                \"customer\": {\n                    \"name\": \"Mruydy Col\",\n                    \"email\": \"mrudul@doboz.co\",\n                    \"customer_id\": \"customer_id5d5708c303d5ab7fdd\"\n                }\n            },\n            {\n                \"orderid\": \"order_36898e4ba59122873c\",\n                \"order_source\": \"WOOCOMMERCE\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"wc_order_2Nf50iICMQLqN\",\n                \"order_total\": \"30.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-25T12:52:28.000Z\",\n                \"customer\": {\n                    \"name\": \"Test Tester\",\n                    \"email\": \"webstersolutions.in@gmail.com\",\n                    \"customer_id\": \"customer_id709913703d21dc5230\"\n                }\n            },\n            {\n                \"orderid\": \"order_89080a38ed042df6f4\",\n                \"order_source\": \"WOOCOMMERCE\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"wc_order_Ci4BYHjWmJOjW\",\n                \"order_total\": \"100.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-25T12:38:29.000Z\",\n                \"customer\": {\n                    \"name\": \"Test Tester\",\n                    \"email\": \"webstersolutions.in@gmail.com\",\n                    \"customer_id\": \"customer_id709913703d21dc5230\"\n                }\n            },\n            {\n                \"orderid\": \"order_afa43b7598c46c418c\",\n                \"order_source\": \"SEND_GIFTCARD\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"wc_order_5JeBdEIdavFun\",\n                \"order_total\": \"25.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-25T12:31:03.000Z\",\n                \"customer\": {\n                    \"name\": \"Test Tester\",\n                    \"email\": \"webstersolutions.in@gmail.com\",\n                    \"customer_id\": \"customer_id709913703d21dc5230\"\n                }\n            },\n            {\n                \"orderid\": \"order_cbdd9cdc2d2e157649\",\n                \"order_source\": \"MAILCHIMP\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": null,\n                \"order_total\": \"24.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-21T16:27:26.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_029197cbf30a8dfb47\",\n                \"order_source\": \"SEND_GIFTCARD\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": null,\n                \"order_total\": \"24.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-21T13:56:26.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_48519827967f16a0c7\",\n                \"order_source\": \"API\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"ODXXXXX\",\n                \"order_total\": \"100.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-21T12:33:34.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": \"kuntal@doboz.in\",\n                    \"customer_id\": \"customer_6bc6eb8c3792d140de\"\n                }\n            },\n            {\n                \"orderid\": \"order_3e3a6d3b9ff81cdb01\",\n                \"order_source\": \"API\",\n                \"order_status\": \"APPROVED\",\n                \"client_order_id\": \"ODXXXXX\",\n                \"order_total\": \"100.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-21T12:21:50.000Z\",\n                \"customer\": {\n                    \"name\": \"Macy Stan\",\n                    \"email\": \"macy.stan@example.com\",\n                    \"customer_id\": \"customer_id5c896eea4a26169df4\"\n                }\n            },\n            {\n                \"orderid\": \"order_00ead799e4bcc30bac\",\n                \"order_source\": \"API\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"ODXXXXX\",\n                \"order_total\": \"100.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-21T12:12:27.000Z\",\n                \"customer\": {\n                    \"name\": \"Macy Stan\",\n                    \"email\": \"macy.stan@example.com\",\n                    \"customer_id\": \"customer_id5c896eea4a26169df4\"\n                }\n            },\n            {\n                \"orderid\": \"order_ebe5065c0d8292a382\",\n                \"order_source\": \"HIKE\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"00063\",\n                \"order_total\": \"65.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-21T11:26:50.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_b74972baf93f86b1d6\",\n                \"order_source\": \"HUBSPOT\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"67613812\",\n                \"order_total\": \"15.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-20T11:28:12.000Z\",\n                \"customer\": {\n                    \"name\": \"Mrudul T\",\n                    \"email\": \"test2@gmail.com\",\n                    \"customer_id\": \"customer_id074a7fc26854486832\"\n                }\n            },\n            {\n                \"orderid\": \"order_7596ebab4ea80dff18\",\n                \"order_source\": \"HUBSPOT\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": null,\n                \"order_total\": \"15.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-20T11:21:29.000Z\",\n                \"customer\": {\n                    \"name\": \"Mrudul T\",\n                    \"email\": \"test2@gmail.com\",\n                    \"customer_id\": \"customer_id074a7fc26854486832\"\n                }\n            },\n            {\n                \"orderid\": \"order_dcc29291857cc51004\",\n                \"order_source\": \"KLAVIYO\",\n                \"order_status\": \"APPROVED\",\n                \"client_order_id\": null,\n                \"order_total\": \"0.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-19T10:53:43.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_c5276645007ef3cb03\",\n                \"order_source\": \"KLAVIYO\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": null,\n                \"order_total\": \"48.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-19T10:49:57.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_582cd295a42d9921f8\",\n                \"order_source\": \"KLAVIYO\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": null,\n                \"order_total\": \"72.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-19T10:49:52.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_171f5ad40fc093dbc6\",\n                \"order_source\": \"API\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"ODXXXXX\",\n                \"order_total\": \"100.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-18T11:03:56.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_9152dce05928ba7c9a\",\n                \"order_source\": \"API\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"ODXXXXX\",\n                \"order_total\": \"50.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-18T08:57:32.000Z\",\n                \"customer\": {\n                    \"name\": \"Macy Stan\",\n                    \"email\": \"macy.stan@example.com\",\n                    \"customer_id\": \"customer_id5c896eea4a26169df4\"\n                }\n            },\n            {\n                \"orderid\": \"order_7f3907f26a7524d7a7\",\n                \"order_source\": \"API\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"ODXXXXX\",\n                \"order_total\": \"100.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-18T08:54:06.000Z\",\n                \"customer\": {\n                    \"name\": \"Macy Stan\",\n                    \"email\": \"macy.stan@example.com\",\n                    \"customer_id\": \"customer_id5c896eea4a26169df4\"\n                }\n            },\n            {\n                \"orderid\": \"order_2817d77e4995b95f73\",\n                \"order_source\": \"WEBPOS\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": null,\n                \"order_total\": \"13.22\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-13T14:35:52.000Z\",\n                \"customer\": {\n                    \"name\": \"Mrudul T\",\n                    \"email\": \"mrudul@doboz.in\",\n                    \"customer_id\": \"customer_idbf7df003c62ac06a33\"\n                }\n            },\n            {\n                \"orderid\": \"order_83962a0ec790c67200\",\n                \"order_source\": \"WEBPOS\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": null,\n                \"order_total\": \"14.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-13T12:50:23.000Z\",\n                \"customer\": {\n                    \"name\": \"Kuntal T\",\n                    \"email\": \"kuntal@doobz.in\",\n                    \"customer_id\": \"customer_id0abd125f6361bd0542\"\n                }\n            },\n            {\n                \"orderid\": \"order_f6443a2f09fcf813ad\",\n                \"order_source\": \"WEBPOS\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": null,\n                \"order_total\": \"12.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-13T12:45:12.000Z\",\n                \"customer\": {\n                    \"name\": \"Mrudul T\",\n                    \"email\": \"mrudul@doboz.in\",\n                    \"customer_id\": \"customer_idbf7df003c62ac06a33\"\n                }\n            },\n            {\n                \"orderid\": \"order_f2cfff3f98ce6f89ad\",\n                \"order_source\": \"WEBPOS\",\n                \"order_status\": \"APPROVED\",\n                \"client_order_id\": null,\n                \"order_total\": \"12.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-13T12:43:23.000Z\",\n                \"customer\": {\n                    \"name\": \"Mrudul T\",\n                    \"email\": \"mrudul@doboz.in\",\n                    \"customer_id\": \"customer_idbf7df003c62ac06a33\"\n                }\n            },\n            {\n                \"orderid\": \"order_6835555f06b395430f\",\n                \"order_source\": \"API\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": null,\n                \"order_total\": \"25.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-09T13:07:52.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": \"macy@example.com\",\n                    \"customer_id\": \"customer_ide9ece96fd63f8d3bdb\"\n                }\n            },\n            {\n                \"orderid\": \"order_546a649cfd020dbdb0\",\n                \"order_source\": \"API\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": null,\n                \"order_total\": \"100.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-05-09T10:59:12.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": \"macy@example.com\",\n                    \"customer_id\": \"customer_ide9ece96fd63f8d3bdb\"\n                }\n            },\n            {\n                \"orderid\": \"order_3f17546e709da7be24\",\n                \"order_source\": \"WEBPOS\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": null,\n                \"order_total\": \"12.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-04-25T10:55:31.000Z\",\n                \"customer\": {\n                    \"name\": \"M T\",\n                    \"email\": \"asd@asd.com\",\n                    \"customer_id\": \"customer_idaec1bbc554493713bc\"\n                }\n            },\n            {\n                \"orderid\": \"order_9da48713b36f5c3aed\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-819a-11eb-8e095eaedf76\",\n                \"order_total\": \"70.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-27T08:16:27.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav D\",\n                    \"email\": \"gaurav@test.in\",\n                    \"customer_id\": \"customer_id32cfffa96ba4e22e91\"\n                }\n            },\n            {\n                \"orderid\": \"order_e273eb9ccf4aa3bcd0\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-819a-11eb-8e067bf1e623\",\n                \"order_total\": \"19.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-26T08:00:48.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav Test\",\n                    \"email\": \"gaurav@doboz.in\",\n                    \"customer_id\": \"customer_id0f8d10b868df157061\"\n                }\n            },\n            {\n                \"orderid\": \"order_dbded8e4b5792dd613\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-819a-11eb-8e05ff27cafd\",\n                \"order_total\": \"60.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-26T07:39:41.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav Test\",\n                    \"email\": \"gaurav@doboz.in\",\n                    \"customer_id\": \"customer_id0f8d10b868df157061\"\n                }\n            },\n            {\n                \"orderid\": \"order_5a3f13e226af5d7135\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-819a-11eb-8e05968bb3d6\",\n                \"order_total\": \"25.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-26T07:35:16.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav D\",\n                    \"email\": \"gaurav@test.in\",\n                    \"customer_id\": \"customer_id32cfffa96ba4e22e91\"\n                }\n            },\n            {\n                \"orderid\": \"order_b1884f4712fd85416b\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a675-11eb-8bc0ee53b30d\",\n                \"order_total\": \"45.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-23T10:22:21.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav Test\",\n                    \"email\": \"gaurav@doboz.in\",\n                    \"customer_id\": \"customer_id0f8d10b868df157061\"\n                }\n            },\n            {\n                \"orderid\": \"order_b86524f5ebdfd24cc3\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a675-11eb-8bc0b58b42ea\",\n                \"order_total\": \"48.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-23T10:17:17.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav Test\",\n                    \"email\": \"gaurav@doboz.in\",\n                    \"customer_id\": \"customer_id0f8d10b868df157061\"\n                }\n            },\n            {\n                \"orderid\": \"order_dc0ee07561c03ab057\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a675-11eb-8bc039345bf7\",\n                \"order_total\": \"52.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-23T10:15:40.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav Test\",\n                    \"email\": \"gaurav@doboz.in\",\n                    \"customer_id\": \"customer_id0f8d10b868df157061\"\n                }\n            },\n            {\n                \"orderid\": \"order_4bc605bf6428a41eb9\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a675-11eb-8bbf336a8974\",\n                \"order_total\": \"25.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-23T10:12:14.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav Test\",\n                    \"email\": \"gaurav@doboz.in\",\n                    \"customer_id\": \"customer_id0f8d10b868df157061\"\n                }\n            },\n            {\n                \"orderid\": \"order_0d3f157bd4e1ee9556\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a675-11eb-8bbd538f5de1\",\n                \"order_total\": \"52.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-23T10:04:54.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav Test\",\n                    \"email\": \"gaurav@doboz.in\",\n                    \"customer_id\": \"customer_id0f8d10b868df157061\"\n                }\n            },\n            {\n                \"orderid\": \"order_6f10b7bc869e4499a8\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a675-11eb-8bbc41a6845a\",\n                \"order_total\": \"25.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-23T09:49:21.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_5a8bfc41bc30e5bb00\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-9e71-11eb-8bad4071cbb4\",\n                \"order_total\": \"40.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-23T07:59:09.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_99e3426a41b3d2378e\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-9e71-11eb-8bad177209a1\",\n                \"order_total\": \"25.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-23T07:56:23.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_465f38e4274ca33564\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-9e71-11eb-8bab3f403b6e\",\n                \"order_total\": \"20.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-23T07:55:15.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_c53ddc9021350f0275\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-9e71-11eb-8baae084d40b\",\n                \"order_total\": \"20.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-23T07:42:03.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_4cee92252e449343c6\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-9e71-11eb-8ba9f24c2db8\",\n                \"order_total\": \"16.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-23T07:39:23.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_524c4d1f4ab4e0363c\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-9e71-11eb-8b8d0bed7b65\",\n                \"order_total\": \"15.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-23T07:32:45.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_4872659d6279918f09\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-afaa-11eb-8b03142fa335\",\n                \"order_total\": \"15.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-22T11:40:57.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_dbe36a940baeb7c0a1\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-ad6c-11eb-8b02143c5e0a\",\n                \"order_total\": \"50.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-22T11:31:30.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_312b9721cf81e35cbd\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-8dad-11eb-8b01db9e79c7\",\n                \"order_total\": \"50.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-22T11:29:56.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_4a94dbd906a178e896\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a412-11eb-8b0193470af6\",\n                \"order_total\": \"40.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-22T11:28:07.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_56428431095e437cab\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a380-11eb-8b003a2678b8\",\n                \"order_total\": \"40.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-22T11:24:05.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_7cea24203281d696cf\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a380-11eb-8affbe292371\",\n                \"order_total\": \"15.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-22T11:15:22.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_d0a13832fd4be18401\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a380-11eb-8afdac440feb\",\n                \"order_total\": \"90.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-22T11:07:51.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_5172e9fbb2f77a9171\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a380-11eb-8afb90023ed1\",\n                \"order_total\": \"52.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-22T10:52:40.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_5385d7169c9201bc03\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a380-11eb-8afb437fc22e\",\n                \"order_total\": \"70.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-22T10:44:26.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_89df561cde2de016e6\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a380-11eb-8afac203699b\",\n                \"order_total\": \"60.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-22T10:42:18.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_34d0640df34ae8e0b4\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a380-11eb-8afa3ed6a1e8\",\n                \"order_total\": \"60.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-22T10:38:40.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_f07dc44e1921829ed9\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a380-11eb-8af9b5f1c585\",\n                \"order_total\": \"60.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-22T10:35:00.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_efb86872c651a0bbf7\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a380-11eb-8af6c77e9922\",\n                \"order_total\": \"45.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-22T10:31:10.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_f96d9c1d5acc59ce91\",\n                \"order_source\": \"BIGCOMMERCE\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"2304\",\n                \"order_total\": \"15.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-21T14:00:09.000Z\",\n                \"customer\": {\n                    \"name\": \"Pravin Kamble\",\n                    \"email\": \"pravin@doboz.in\",\n                    \"customer_id\": \"customer_id35d74bea35e6948403\"\n                }\n            },\n            {\n                \"orderid\": \"order_86e6ef0cfcb9fd2a31\",\n                \"order_source\": \"BIGCOMMERCE\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"2303\",\n                \"order_total\": \"20.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-21T13:52:13.000Z\",\n                \"customer\": {\n                    \"name\": \"Pravin Kamble\",\n                    \"email\": \"pravin@doboz.in\",\n                    \"customer_id\": \"customer_id35d74bea35e6948403\"\n                }\n            },\n            {\n                \"orderid\": \"order_6fe8ba88f77f545b71\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-b273-11eb-8873357346be\",\n                \"order_total\": \"10.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-19T07:48:45.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_fbffad013a9b7e5fac\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a71b-11eb-86e9403da0af\",\n                \"order_total\": \"100.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-17T06:24:39.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_cc985302e532270ec8\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-ba11-11eb-8567a8eb24ce\",\n                \"order_total\": \"50.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-15T11:31:14.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_0b042af9ae76a664aa\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-ba11-11eb-856761a1c8d8\",\n                \"order_total\": \"20.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-15T08:21:48.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_037f7c05200151246c\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-ba11-11eb-85672a3f0334\",\n                \"order_total\": \"15.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-15T08:21:07.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav Test\",\n                    \"email\": \"gaurav@doboz.in\",\n                    \"customer_id\": \"customer_id0f8d10b868df157061\"\n                }\n            },\n            {\n                \"orderid\": \"order_9400b851aa0f074422\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-9953-11eb-833488bad35a\",\n                \"order_total\": \"29.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-13T07:46:44.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav Dhandre\",\n                    \"email\": \"gaurav@doboz.in.com\",\n                    \"customer_id\": \"customer_id3eb75b1177271f55bd\"\n                }\n            },\n            {\n                \"orderid\": \"order_59d6399c7045aa575e\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-9953-11eb-8333df3fadf3\",\n                \"order_total\": \"25.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-12T13:10:23.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav Test\",\n                    \"email\": \"gaurav@doboz.in\",\n                    \"customer_id\": \"customer_id0f8d10b868df157061\"\n                }\n            },\n            {\n                \"orderid\": \"order_5bb747c40647041a01\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-9953-11eb-8331e6cc6d80\",\n                \"order_total\": \"16.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-12T13:07:21.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav Test\",\n                    \"email\": \"gaurav@doboz.in\",\n                    \"customer_id\": \"customer_id0f8d10b868df157061\"\n                }\n            },\n            {\n                \"orderid\": \"order_a6d3436d441306a8d1\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-93b8-11eb-82ee215e848d\",\n                \"order_total\": \"16.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-12T04:50:04.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_fbec0bd6a56227d3b1\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-93b8-11eb-82ed9925517a\",\n                \"order_total\": \"14.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-12T04:48:08.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav Test\",\n                    \"email\": \"gaurav@doboz.in\",\n                    \"customer_id\": \"customer_id0f8d10b868df157061\"\n                }\n            },\n            {\n                \"orderid\": \"order_29c71ff1add7e036b4\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-93b8-11eb-82ed6b76ad57\",\n                \"order_total\": \"40.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-12T04:44:20.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav D\",\n                    \"email\": \"gaurav@test.in\",\n                    \"customer_id\": \"customer_id32cfffa96ba4e22e91\"\n                }\n            },\n            {\n                \"orderid\": \"order_9d47d0b99b5073b276\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-93b8-11eb-82ed21db9934\",\n                \"order_total\": \"39.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-12T04:43:03.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_2ae427d69a2301523d\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-93b8-11eb-828b17691d41\",\n                \"order_total\": \"36.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-12T04:41:00.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav Test\",\n                    \"email\": \"gaurav@doboz.in\",\n                    \"customer_id\": \"customer_id0f8d10b868df157061\"\n                }\n            },\n            {\n                \"orderid\": \"order_f0ff47b6fbab6a8a1f\",\n                \"order_source\": \"BIGCOMMERCE\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"2233\",\n                \"order_total\": \"15.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-10T16:42:31.000Z\",\n                \"customer\": {\n                    \"name\": \"Pravin Kamble\",\n                    \"email\": \"pravin@doboz.in\",\n                    \"customer_id\": \"customer_id35d74bea35e6948403\"\n                }\n            },\n            {\n                \"orderid\": \"order_c79ba5a6df6aba7326\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-a55d-11eb-81693fe3daeb\",\n                \"order_total\": \"52.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-10T06:27:53.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_7d066531a4c1df3810\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-8f24-11eb-7da2f20d4968\",\n                \"order_total\": \"40.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-05T11:11:08.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_eb1946c93cd8b09dd5\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-8f24-11eb-7da29c42da95\",\n                \"order_total\": \"13.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-05T11:07:20.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_3496f642325b278cc7\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-8f24-11eb-7da24c42a8e2\",\n                \"order_total\": \"56.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-05T11:04:56.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_bac06b995b895bd0c9\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-8f24-11eb-7da1dcfcf11f\",\n                \"order_total\": \"30.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-05T11:02:43.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_735a25a2a84f992908\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-8f24-11eb-7d9f6244b0ec\",\n                \"order_total\": \"52.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-05T10:59:35.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_0422ff715ac544ad1c\",\n                \"order_source\": \"BIGCOMMERCE\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"2223\",\n                \"order_total\": \"50.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-05T10:47:23.000Z\",\n                \"customer\": {\n                    \"name\": \"Gaurav Test\",\n                    \"email\": \"gaurav@doboz.in\",\n                    \"customer_id\": \"customer_id0f8d10b868df157061\"\n                }\n            },\n            {\n                \"orderid\": \"order_b341fff205e511a52a\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-8f24-11eb-7d9bae2b1169\",\n                \"order_total\": \"15.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-05T10:41:51.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_07391950232df2c5e2\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-8f24-11eb-7d9b83f56766\",\n                \"order_total\": \"54.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-05T10:15:20.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_e8c37fec98e1de19e5\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-8f24-11eb-7d9ac9215703\",\n                \"order_total\": \"26.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-05T10:14:09.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_273bbc1dd0ac267815\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-8f24-11eb-7d9ab65db870\",\n                \"order_total\": \"36.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-05T10:08:54.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_867302288f1c93b5f8\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-bc5e-11eb-7d964cee5425\",\n                \"order_total\": \"55.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-05T09:38:31.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            },\n            {\n                \"orderid\": \"order_e4b76c3b83a4f175fc\",\n                \"order_source\": \"VEND\",\n                \"order_status\": \"FULFILLED\",\n                \"client_order_id\": \"130a5139-eb1c-bc5e-11eb-7d953a148aee\",\n                \"order_total\": \"35.0\",\n                \"currency\": \"USD\",\n                \"created_at\": \"2021-03-05T09:35:18.000Z\",\n                \"customer\": {\n                    \"name\": null,\n                    \"email\": null,\n                    \"customer_id\": null\n                }\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"b4bcc6bb-3bbe-441f-b51f-b4c11a7aae88"},{"name":"Get Order Details","id":"3e0e291e-735a-4b8b-b922-75a241bba079","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.giftcard.99minds.io/api/v1/orders/order_c069efdc1e0559c696","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","orders","order_c069efdc1e0559c696"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"046fb3d2-3625-4022-8226-c0be4fd8469f","name":"Get Order Details","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://api.giftcard.99minds.io/api/v1/orders/order_b375a27e080af3eda8"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"7e3532a3cf3313c58c590abcf2512e0c\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"494fb745-7a89-4b0e-a3a5-e847ee0d4759","enabled":true},{"key":"X-Runtime","value":"0.053232","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"order\": {\n            \"orderid\": \"order_b375a27e080af3eda8\",\n            \"order_source\": \"WEBPOS\",\n            \"order_status\": \"FULFILLED\",\n            \"client_order_id\": null,\n            \"order_total\": \"25.0\",\n            \"currency\": \"USD\",\n            \"created_at\": \"2021-08-03T13:44:27.000Z\",\n            \"customer\": {\n                \"name\": \"M T\",\n                \"email\": \"asd@asd.com\",\n                \"customer_id\": \"customer_aec1bbc554493713bc\"\n            },\n            \"items\": [\n                {\n                    \"status\": \"FULFILLED\",\n                    \"quantity\": 1,\n                    \"giftcard_value\": \"25.0\",\n                    \"sender_email\": \"asd@asd.com\",\n                    \"receiver_email\": \"asd@asd.com\",\n                    \"is_gift\": false,\n                    \"promo_code\": null,\n                    \"discounted_value\": null,\n                    \"giftcards\": [\n                        {\n                            \"card_id\": \"card_6a3e11c0cecf424dfb\",\n                            \"active\": true,\n                            \"giftcard_number\": \"6125161244696729\",\n                            \"original_value\": \"25.00\",\n                            \"balance\": \"25.00\",\n                            \"expiration_date\": null,\n                            \"currency\": \"USD\",\n                            \"created_at\": \"2021-08-02T00:00:00.000Z\"\n                        }\n                    ]\n                }\n            ]\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"3e0e291e-735a-4b8b-b922-75a241bba079"},{"name":"Get Order Details By Client Order ID","id":"e7ac9b58-7e50-49ba-98d5-0b536095bba0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.giftcard.99minds.io/api/v1/orders/detail/by_client_order_id/2525","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","orders","detail","by_client_order_id","2525"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"70285cd9-cb80-4ca8-9b63-9e431be3ed4c","name":"Get Order Details By Client Order ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.giftcard.99minds.io/api/v1/orders/detail/by_client_order_id/2525"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"b6e0a706d195da2ba11159d47cddb210\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"f31586d7-a413-4957-bfcf-719f79342271","enabled":true},{"key":"X-Runtime","value":"0.047114","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"order\": {\n            \"orderid\": \"DO2109B322F85F710D569A\",\n            \"order_source\": \"BIGCOMMERCE\",\n            \"order_status\": \"FULFILLED\",\n            \"client_order_id\": \"2525\",\n            \"order_total\": \"10.0\",\n            \"currency\": \"USD\",\n            \"created_at\": \"2021-07-22T16:42:41.000Z\",\n            \"customer\": {\n                \"name\": \"Ethan Smith\",\n                \"email\": \"Stegemiller68@gmail.com\",\n                \"customer_id\": \"user_7b84de0654b8b6c8f7\"\n            },\n            \"items\": [\n                {\n                    \"status\": \"FULFILLED\",\n                    \"quantity\": 1,\n                    \"giftcard_value\": \"10.0\",\n                    \"sender_email\": \"Stegemiller68@gmail.com\",\n                    \"receiver_email\": \"Stegemiller68@gmail.com\",\n                    \"is_gift\": false,\n                    \"promo_code\": null,\n                    \"discounted_value\": null,\n                    \"giftcards\": [\n                        {\n                            \"card_id\": \"card_b528d697cd88bd023b\",\n                            \"active\": true,\n                            \"giftcard_number\": \"3677281843406808\",\n                            \"original_value\": \"20.00\",\n                            \"balance\": \"5.00\",\n                            \"expiration_date\": null,\n                            \"currency\": \"USD\",\n                            \"created_at\": \"2021-07-22T16:42:41.000Z\"\n                        }\n                    ]\n                }\n            ]\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"e7ac9b58-7e50-49ba-98d5-0b536095bba0"},{"name":"Process Item - Digital","id":"d8e97774-ad50-49a3-b29a-92f5bd4a2a6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"item_id\": \"item_75fc86bcbcbea8d026\"\n}"},"url":"https://api.giftcard.99minds.io/api/v1/orders/process/digital","description":"<p>Fulfills a line item and assigns a gift card to it.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>item_id</td>\n<td><strong>Yes</strong></td>\n<td>The line item id generated by 99minds.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","orders","process","digital"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"96eaa728-a9a0-40c1-9624-120200685afe","name":"Process Item - Digital","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"item_id\": \"item_75fc86bcbcbea8d026\"\n}"},"url":"https://api.giftcard.99minds.io/api/v1/orders/process/digital"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"bead50f20ec5314da5520c3802fa5afe\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"3a1f6431-53bb-404a-9062-d024408c6b11"},{"key":"X-Runtime","value":"0.235370"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"81"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Item(s) processed successfully\",\n    \"errors\": []\n}"}],"_postman_id":"d8e97774-ad50-49a3-b29a-92f5bd4a2a6b"},{"name":"Process Item - Physical","id":"ef41b736-d262-4cf2-9916-679390745c5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"item_id\": \"item_ec4986706008dd160b\",\n    \"mark_item_as_fulfilled\": false,\n    \"giftcard_numbers\": [\n        \"344580131\"\n    ]\n}"},"url":"https://api.giftcard.99minds.io/api/v1/orders/process/physical","description":"<p>Fulfills a line item and assigns a gift card to it.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>item_id</td>\n<td><strong>Yes</strong></td>\n<td>The line item id generated by 99minds.</td>\n</tr>\n<tr>\n<td>mark_item_as_fulfilled</td>\n<td>No</td>\n<td>Default: <code>true</code>. Marks the item as fulfilled.</td>\n</tr>\n<tr>\n<td>skip_card_activation</td>\n<td>No</td>\n<td>Default: <code>false</code>. Prevents activation of card on external processors.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />giftcard_numbers  <br />card_ids</td>\n<td><strong>Yes</strong></td>\n<td>Giftcard Numbers: An array of gift card numbers to be assigned to the item. <br /> Cards Ids: 99minds generated gift card ids. <br />The number of gift cards provided should match to the line item quantity. Gift cards should not be already sold.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","orders","process","physical"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"202196cb-9995-4679-8fd6-ce41d21081a6","name":"Process Item - Physical","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"item_id\": \"item_94994ceb1e9d491dd8\",\n    \"giftcard_numbers\": [\n        \"385066179\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/orders/process/physical"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3a16377b59fbc02cecfe4a6dfb194676\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"def0ec72-2d6b-40e9-ba7a-fec2ee9bc095"},{"key":"X-Runtime","value":"0.177770"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"82"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Gift card(s) allocated to item\",\n    \"errors\": []\n}"}],"_postman_id":"ef41b736-d262-4cf2-9916-679390745c5a"},{"name":"Update Item - Greeting Message","id":"0e80be00-2eb7-49d4-820a-95516e65a3b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"item_id\": \"item_a0d608b0548fafef8a\",\n    \"message\": \"Wish you a very happy birthday!\"\n}"},"url":"https://api.giftcard.99minds.io/api/v1/orders/update/greeting_message","description":"<p>Updates greeting message for a line item.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>item_id</td>\n<td><strong>Yes</strong></td>\n<td>The line item id generated by 99minds.</td>\n</tr>\n<tr>\n<td>message</td>\n<td><strong>Yes</strong></td>\n<td>Greeting message to update.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","orders","update","greeting_message"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"da2dae9d-b710-488e-8f58-faee289f15ca","name":"Update Item - Greeting Message","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"item_id\": \"item_a0d608b0548fafef8a\",\n    \"message\": \"Wish you a very happy birthday!\"\n}"},"url":"https://api.giftcard.99minds.io/api/v1/orders/update/greeting_message"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"86339085dca9f55d746792e2f8ee685f\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"30d039ad-05cd-4cc7-acf4-13de4d4f60cf"},{"key":"X-Runtime","value":"10.742956"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"89"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Greeting messages updated successfully\",\n    \"errors\": []\n}"}],"_postman_id":"0e80be00-2eb7-49d4-820a-95516e65a3b6"},{"name":"Update Item - Schedule Date","id":"cd69440f-8411-4045-af11-524101504e88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"item_id\": \"item_70b49906bd4deb5734\",\n    \"deliver_at\": \"2025-11-07T12:16:12\"\n}"},"url":"https://api.giftcard.99minds.io/api/v1/orders/update/schedule_date","description":"<p>Updates greeting message for a line item.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>item_id</td>\n<td><strong>Yes</strong></td>\n<td>The line item id generated by 99minds.</td>\n</tr>\n<tr>\n<td>deliver_at</td>\n<td><strong>Yes</strong></td>\n<td>Schedule date in ISO8601 format.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","orders","update","schedule_date"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"26041c9d-38c5-4a4f-bbe4-b1a99d8bf246","name":"Update Item - Schedule Date","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"item_id\": \"item_70b49906bd4deb5734\",\n    \"deliver_at\": \"2025-11-07T12:16:12\"\n}"},"url":"https://api.giftcard.99minds.io/api/v1/orders/update/schedule_date"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"383833c62e8369a45d1a01137939b82f\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"bd649827-6e04-4c4c-ae0c-b2d6483e139e"},{"key":"X-Runtime","value":"0.041236"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"86"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Scheduled date updated successfully\",\n    \"errors\": []\n}"}],"_postman_id":"cd69440f-8411-4045-af11-524101504e88"}],"id":"1f2dba3e-1acf-46e4-b2ed-b2f9ce3dbb0a","description":"<p>These endpoints return details about Gift cards orders.</p>\n","_postman_id":"1f2dba3e-1acf-46e4-b2ed-b2f9ce3dbb0a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}}},{"name":"Store Credit","item":[{"name":"Get Store Credits","id":"2ac3b6e2-d2ec-457d-a86a-53d40ccf3c1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/storecredits?page_no=1","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_no</td>\n<td><strong>Yes</strong></td>\n<td>Page no &gt; 0.</td>\n</tr>\n<tr>\n<td>card_id</td>\n<td><strong>No</strong></td>\n<td>Store credit card id</td>\n</tr>\n<tr>\n<td>customer_id</td>\n<td><strong>No</strong></td>\n<td>99minds generated customer id</td>\n</tr>\n<tr>\n<td>client_customer_id</td>\n<td><strong>No</strong></td>\n<td>Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.</td>\n</tr>\n<tr>\n<td>client_customer_platform</td>\n<td><strong>No</strong></td>\n<td>Any one of the supported platforms. <code>client_customer_platform</code> should be passed in along with <code>client_customer_id</code> for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>card_numbers</td>\n<td><strong>No</strong></td>\n<td>Comma separated list store credit card numbers. Max 50.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td><code>asc</code> or <code>desc</code>. Default <code>desc</code></td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of store credit card</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of store credit card</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","storecredits"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"page_no","value":"1"}],"variable":[]}},"response":[{"id":"1154580f-2813-4231-b646-5a76495c7f59","name":"Get Store Credits","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.giftcard.99minds.io/api/v1/storecredits?page_no=1","host":["https://api.giftcard.99minds.io"],"path":["api","v1","storecredits"],"query":[{"key":"page_no","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"db59d89a2891b20aa06098cd580b0fa8\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"42f08620-3819-4cf4-8464-6cb2c92420ab","enabled":true},{"key":"X-Runtime","value":"0.058267","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"total_records\": 25,\n        \"total_pages\": 1,\n        \"current_page\": 1,\n        \"next_page\": null,\n        \"prev_page\": null,\n        \"version\": {\n            \"min\": 4254,\n            \"max\": 4386\n        },\n        \"store_credits\": [\n            {\n                \"customer_name\": null,\n                \"customer_email\": null,\n                \"customer_id\": null,\n                \"card_number\": \"HMS8ZAFH\",\n                \"currency\": \"$\",\n                \"balance\": \"0.00\",\n                \"card_id\": \"card_55553f868fb9267954\",\n                \"last_transaction\": \"CREATION\",\n                \"created_at\": \"2022-02-21T08:44:57.000Z\"\n            },\n            {\n                \"customer_name\": null,\n                \"customer_email\": null,\n                \"customer_id\": null,\n                \"card_number\": \"HMUFK3B4\",\n                \"currency\": \"$\",\n                \"balance\": \"0.00\",\n                \"card_id\": \"card_11abe1bf222551ca73\",\n                \"last_transaction\": \"CREATION\",\n                \"created_at\": \"2022-02-21T08:44:57.000Z\"\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"2ac3b6e2-d2ec-457d-a86a-53d40ccf3c1e"},{"name":"Get Store Credit Detail","id":"6233fbcc-88b0-493e-82ab-f6471371de24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/storecredits/card_164c3f888dc497e0e4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","storecredits","card_164c3f888dc497e0e4"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"38e88084-7236-4869-ad83-a529682bbe32","name":"Get Store Credit Detail","originalRequest":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/storecredits/card_be541ea5b1af529298"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"769b186dbb3586764c8e387cee2cc81d\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"a7a0601b-ebde-403a-a0a0-f0eccd34280c","enabled":true},{"key":"X-Runtime","value":"0.170498","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"store_credit\": {\n            \"customer_name\": \"Doug Caldwell\",\n            \"customer_email\": \"editor@bizgnus.com\",\n            \"customer_id\": \"user_c1342a0eb28a264d76\",\n            \"card_number\": \"HNFUNI-RROR\",\n            \"currency\": \"$\",\n            \"balance\": \"100.00\",\n            \"card_id\": \"card_be541ea5b1af529298\",\n            \"last_transaction\": \"RELOAD\",\n            \"created_at\": \"2021-11-19T09:23:18.000Z\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"6233fbcc-88b0-493e-82ab-f6471371de24"},{"name":"Get Store Credit Transactions","id":"03ef9178-3ebd-4ada-9dda-b0300e05bac1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/storecredits/transactions?page_no=1","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_no</td>\n<td><strong>Yes</strong></td>\n<td>Page no &gt; 0.</td>\n</tr>\n<tr>\n<td>card_id</td>\n<td><strong>No</strong></td>\n<td>Store credit <code>card_id</code>.</td>\n</tr>\n<tr>\n<td>card_numbers</td>\n<td><strong>No</strong></td>\n<td>Comma separated list of store credit card numbers. Max 50.</td>\n</tr>\n<tr>\n<td>customer_id</td>\n<td><strong>No</strong></td>\n<td>99minds generated customer id</td>\n</tr>\n<tr>\n<td>transaction_type</td>\n<td><strong>No</strong></td>\n<td>Type of transaction</td>\n</tr>\n<tr>\n<td>transaction_source</td>\n<td><strong>No</strong></td>\n<td>Source of transaction</td>\n</tr>\n<tr>\n<td>client_customer_id</td>\n<td><strong>No</strong></td>\n<td>Customer id provided by client when creating/updating customer.  <br />Do note that client_customer_id are platform specific.</td>\n</tr>\n<tr>\n<td>client_customer_platform</td>\n<td><strong>No</strong></td>\n<td>Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same id for a specific customer</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID linked to the transaction.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td><code>asc</code> or <code>desc</code>. Default <code>desc</code></td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of store credit</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of store credit</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","storecredits","transactions"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"page_no","value":"1"}],"variable":[]}},"response":[{"id":"7b4bf7a2-9ed6-47c2-b959-def45258ca3b","name":"Get Store Credit Transactions","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.giftcard.99minds.io/api/v1/storecredits/transactions?page_no=1","host":["https://api.giftcard.99minds.io"],"path":["api","v1","storecredits","transactions"],"query":[{"key":"page_no","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"82aedfa6c951578bdbc0082a73420346\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"69aa6378-50f9-43e4-abf5-883ecf48b74b"},{"key":"X-Runtime","value":"0.057729"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"30046"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"total_pages\": 5,\n        \"current_page\": 1,\n        \"next_page\": 2,\n        \"prev_page\": null,\n        \"transactions\": [\n            {\n                \"card_number\": \"HL3CDKWE\",\n                \"card_id\": \"card_09e06b7d3e8859434a\",\n                \"transaction_id\": \"transaction_3d35f7a1528b459efe\",\n                \"transaction_type\": \"MANUAL_CREDIT\",\n                \"transaction_amount\": \"12.00\",\n                \"transaction_date\": \"2023-12-13T10:37:16.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HL74W2CC\",\n                \"card_id\": \"card_c73187cf70eabcc585\",\n                \"transaction_id\": \"transaction_2e5dd1897f95ba858a\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-10-04T13:04:51.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HL74W2CC\",\n                \"card_id\": \"card_c73187cf70eabcc585\",\n                \"transaction_id\": \"transaction_2f9d48e90d147b47a5\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-10-04T13:04:51.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLDEQERK\",\n                \"card_id\": \"card_efb4904e94616ec662\",\n                \"transaction_id\": \"transaction_49db8b781ecabeb821\",\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-08-24T09:23:21.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLDEQERK\",\n                \"card_id\": \"card_efb4904e94616ec662\",\n                \"transaction_id\": \"transaction_69b9890c5d15e0b814\",\n                \"transaction_type\": \"DEACTIVATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-08-24T09:22:27.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLZC2FG6\",\n                \"card_id\": \"card_ce549718291ebbae1c\",\n                \"transaction_id\": \"transaction_1225f3bdc077ee470a\",\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-08-24T08:47:51.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLZC2FG6\",\n                \"card_id\": \"card_ce549718291ebbae1c\",\n                \"transaction_id\": \"transaction_53182d6e7ea789abbc\",\n                \"transaction_type\": \"DEACTIVATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-08-24T08:46:56.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLZC2FG6\",\n                \"card_id\": \"card_ce549718291ebbae1c\",\n                \"transaction_id\": \"transaction_4f6bd7221c5ab53a26\",\n                \"transaction_type\": \"ACTIVATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-08-24T08:44:13.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLZC2FG6\",\n                \"card_id\": \"card_ce549718291ebbae1c\",\n                \"transaction_id\": \"transaction_e1722cfe6b4334df25\",\n                \"transaction_type\": \"DEACTIVATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-08-24T08:43:33.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HL3CDKWE\",\n                \"card_id\": \"card_09e06b7d3e8859434a\",\n                \"transaction_id\": \"transaction_8cd22ad5075b34c1fa\",\n                \"transaction_type\": \"MANUAL_CREDIT\",\n                \"transaction_amount\": \"20.00\",\n                \"transaction_date\": \"2023-08-23T14:38:27.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HL3CDKWE\",\n                \"card_id\": \"card_09e06b7d3e8859434a\",\n                \"transaction_id\": \"transaction_615d1d89919057ffd3\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-08-23T14:38:19.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HL3CDKWE\",\n                \"card_id\": \"card_09e06b7d3e8859434a\",\n                \"transaction_id\": \"transaction_5cb4081cb67f728903\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-08-23T14:38:05.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLZSW3Y8\",\n                \"card_id\": \"card_3e82111f9d9b846383\",\n                \"transaction_id\": \"transaction_a770932986e4ed3112\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-08-23T14:38:05.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLYQPZNN\",\n                \"card_id\": \"card_9a8eaf6b5b3332b11f\",\n                \"transaction_id\": \"transaction_cc8396e89da43fb6ac\",\n                \"transaction_type\": \"MANUAL_CREDIT\",\n                \"transaction_amount\": \"22.00\",\n                \"transaction_date\": \"2023-08-23T11:36:57.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLYQPZNN\",\n                \"card_id\": \"card_9a8eaf6b5b3332b11f\",\n                \"transaction_id\": \"transaction_e1f233493142b8001b\",\n                \"transaction_type\": \"MANUAL_DEBIT\",\n                \"transaction_amount\": \"21.00\",\n                \"transaction_date\": \"2023-08-22T11:56:21.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLYQPZNN\",\n                \"card_id\": \"card_9a8eaf6b5b3332b11f\",\n                \"transaction_id\": \"transaction_f4c35e14495f85a7d2\",\n                \"transaction_type\": \"MANUAL_CREDIT\",\n                \"transaction_amount\": \"11.00\",\n                \"transaction_date\": \"2023-08-22T11:56:01.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLZC2FG6\",\n                \"card_id\": \"card_ce549718291ebbae1c\",\n                \"transaction_id\": \"transaction_322190e831c9803cde\",\n                \"transaction_type\": \"MANUAL_CREDIT\",\n                \"transaction_amount\": \"11.00\",\n                \"transaction_date\": \"2023-08-22T11:06:13.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLZC2FG6\",\n                \"card_id\": \"card_ce549718291ebbae1c\",\n                \"transaction_id\": \"transaction_aa0c2d02331d287f1a\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-31T15:18:27.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLZC2FG6\",\n                \"card_id\": \"card_ce549718291ebbae1c\",\n                \"transaction_id\": \"transaction_7dc9ae2ed08f1eb536\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-31T15:18:27.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLYQPZNN\",\n                \"card_id\": \"card_9a8eaf6b5b3332b11f\",\n                \"transaction_id\": \"transaction_a60cdbea4310f85b50\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"10.00\",\n                \"transaction_date\": \"2023-07-27T16:54:50.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLYQPZNN\",\n                \"card_id\": \"card_9a8eaf6b5b3332b11f\",\n                \"transaction_id\": \"transaction_3704325534cffc4fe4\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-27T16:54:48.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLYQPZNN\",\n                \"card_id\": \"card_9a8eaf6b5b3332b11f\",\n                \"transaction_id\": \"transaction_8841adacf05f120466\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-27T16:54:48.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLUV7JRP\",\n                \"card_id\": \"card_d5ad75cdf56344dbef\",\n                \"transaction_id\": \"transaction_21837c18fdcd485f96\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"15.00\",\n                \"transaction_date\": \"2023-07-15T15:04:36.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLUV7JRP\",\n                \"card_id\": \"card_d5ad75cdf56344dbef\",\n                \"transaction_id\": \"transaction_3c9bfbe8f28ec064f7\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-15T15:04:34.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLUV7JRP\",\n                \"card_id\": \"card_d5ad75cdf56344dbef\",\n                \"transaction_id\": \"transaction_d5245df506c6005d54\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-15T15:04:34.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLUFCNOG\",\n                \"card_id\": \"card_4c075e36b176ab7228\",\n                \"transaction_id\": \"transaction_d4c4da6100adfcf16e\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"10.00\",\n                \"transaction_date\": \"2023-06-22T14:32:15.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": \"order_aa90539b2558af249d\"\n            },\n            {\n                \"card_number\": \"HLUFCNOG\",\n                \"card_id\": \"card_4c075e36b176ab7228\",\n                \"transaction_id\": \"transaction_d2d1f6a6680e331597\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-06-22T14:32:07.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": \"order_aa90539b2558af249d\"\n            },\n            {\n                \"card_number\": \"HLUFCNOG\",\n                \"card_id\": \"card_4c075e36b176ab7228\",\n                \"transaction_id\": \"transaction_9c1cfa9b5fef53a1ce\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-06-22T14:32:07.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": \"order_aa90539b2558af249d\"\n            },\n            {\n                \"card_number\": \"HLPGXY5T\",\n                \"card_id\": \"card_6b265462c0f202b19a\",\n                \"transaction_id\": \"transaction_c09f1229274efb94c7\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"13.00\",\n                \"transaction_date\": \"2023-06-15T20:46:07.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLPGXY5T\",\n                \"card_id\": \"card_6b265462c0f202b19a\",\n                \"transaction_id\": \"transaction_d69efec96d92b1aa2d\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"4.00\",\n                \"transaction_date\": \"2023-06-15T20:13:41.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLPGXY5T\",\n                \"card_id\": \"card_6b265462c0f202b19a\",\n                \"transaction_id\": \"transaction_6e542b6c9eb6491e33\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"12.00\",\n                \"transaction_date\": \"2023-06-15T20:12:15.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLDEQERK\",\n                \"card_id\": \"card_efb4904e94616ec662\",\n                \"transaction_id\": \"transaction_03b7bc79360ee956c2\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"25.00\",\n                \"transaction_date\": \"2023-06-15T11:27:06.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLDEQERK\",\n                \"card_id\": \"card_efb4904e94616ec662\",\n                \"transaction_id\": \"transaction_a08bd8113f3b70b710\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-06-15T11:26:56.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLDEQERK\",\n                \"card_id\": \"card_efb4904e94616ec662\",\n                \"transaction_id\": \"transaction_701b74fc661325967b\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-06-15T11:26:56.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLPGXY5T\",\n                \"card_id\": \"card_6b265462c0f202b19a\",\n                \"transaction_id\": \"transaction_089b021457a2b337cb\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-09-21T20:19:39.000Z\",\n                \"transaction_source\": \"RETAIL_PRO9\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLXL4HOB\",\n                \"card_id\": \"card_2ecadbe138d7e78a41\",\n                \"transaction_id\": \"transaction_189840690dbc285c14\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-09-21T20:18:44.000Z\",\n                \"transaction_source\": \"RETAIL_PRO9\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLXL4HOB\",\n                \"card_id\": \"card_2ecadbe138d7e78a41\",\n                \"transaction_id\": \"transaction_0976c0d4b6d7e4d3a4\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-09-21T19:56:40.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLPGXY5T\",\n                \"card_id\": \"card_6b265462c0f202b19a\",\n                \"transaction_id\": \"transaction_e22ef7ca0ec00ede38\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-09-21T19:56:40.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLSWUKIW\",\n                \"card_id\": \"card_ce15145fe15049d1d6\",\n                \"transaction_id\": \"transaction_fa35a7eaa053d01c3f\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-09-21T19:53:25.000Z\",\n                \"transaction_source\": \"RETAIL_PRO9\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLSJYYP1\",\n                \"card_id\": \"card_40dff01925c90043e4\",\n                \"transaction_id\": \"transaction_9eb6067ad9aceedd09\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-09-21T18:07:59.000Z\",\n                \"transaction_source\": \"API\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLSJYYP1\",\n                \"card_id\": \"card_40dff01925c90043e4\",\n                \"transaction_id\": \"transaction_04bb7f61a58f53ec59\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-09-21T18:06:58.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLSWUKIW\",\n                \"card_id\": \"card_ce15145fe15049d1d6\",\n                \"transaction_id\": \"transaction_6d7935b028b8a8a268\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-09-21T18:06:58.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HL255OQ8\",\n                \"card_id\": \"card_74db869fe0d0c1fca6\",\n                \"transaction_id\": \"transaction_6dda2811502991eab6\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2022-08-27T12:33:58.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101229\"\n            },\n            {\n                \"card_number\": \"HL255OQ8\",\n                \"card_id\": \"card_74db869fe0d0c1fca6\",\n                \"transaction_id\": \"transaction_6b47064ff74c38bb06\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-27T12:33:54.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101229\"\n            },\n            {\n                \"card_number\": \"HL255OQ8\",\n                \"card_id\": \"card_74db869fe0d0c1fca6\",\n                \"transaction_id\": \"transaction_90c85f9a2ff8d9baeb\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-27T12:33:54.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101229\"\n            },\n            {\n                \"card_number\": \"HLGQDMAQ\",\n                \"card_id\": \"card_84101e845f3e039241\",\n                \"transaction_id\": \"transaction_b5426f37fb54c57f8d\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2022-08-24T00:30:09.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101228\"\n            },\n            {\n                \"card_number\": \"HLGQDMAQ\",\n                \"card_id\": \"card_84101e845f3e039241\",\n                \"transaction_id\": \"transaction_981317255c5888036a\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"50.00\",\n                \"transaction_date\": \"2022-08-24T00:30:00.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLGQDMAQ\",\n                \"card_id\": \"card_84101e845f3e039241\",\n                \"transaction_id\": \"transaction_4b25cbc343367f3339\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-24T00:29:56.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLGQDMAQ\",\n                \"card_id\": \"card_84101e845f3e039241\",\n                \"transaction_id\": \"transaction_a18b42939b050017ce\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-24T00:29:56.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLTHFR9E\",\n                \"card_id\": \"card_8b5e328b6ba15851de\",\n                \"transaction_id\": \"transaction_d4f0154856333b9298\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_amount\": \"30.00\",\n                \"transaction_date\": \"2022-08-17T05:14:53.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLTHFR9E\",\n                \"card_id\": \"card_8b5e328b6ba15851de\",\n                \"transaction_id\": \"transaction_e556f1dcbcfc898b3c\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_amount\": \"30.00\",\n                \"transaction_date\": \"2022-08-17T05:13:20.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLTHFR9E\",\n                \"card_id\": \"card_8b5e328b6ba15851de\",\n                \"transaction_id\": \"transaction_20f8d5528dbd5533f9\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"30.00\",\n                \"transaction_date\": \"2022-08-17T05:10:10.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLTHFR9E\",\n                \"card_id\": \"card_8b5e328b6ba15851de\",\n                \"transaction_id\": \"transaction_5b93c8f9d99e694a4f\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2022-08-16T13:09:06.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101227\"\n            },\n            {\n                \"card_number\": \"HLTHFR9E\",\n                \"card_id\": \"card_8b5e328b6ba15851de\",\n                \"transaction_id\": \"transaction_12121b5d387f181208\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"50.00\",\n                \"transaction_date\": \"2022-08-16T13:08:55.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLTHFR9E\",\n                \"card_id\": \"card_8b5e328b6ba15851de\",\n                \"transaction_id\": \"transaction_45e09f3409d79a4209\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-16T13:08:51.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLTHFR9E\",\n                \"card_id\": \"card_8b5e328b6ba15851de\",\n                \"transaction_id\": \"transaction_e60dae6107d9ad1a34\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-16T13:08:51.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLTRBUJP\",\n                \"card_id\": \"card_de1bf0fb7870ef93f5\",\n                \"transaction_id\": \"transaction_9c2b0cb78eadeb0683\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"10.00\",\n                \"transaction_date\": \"2022-08-16T13:04:46.000Z\",\n                \"transaction_source\": \"WIDGET\",\n                \"activity_type\": null,\n                \"client_order_id\": \"order_528834ed0784ab5a80\"\n            },\n            {\n                \"card_number\": \"HL3NDTUA\",\n                \"card_id\": \"card_0298ea10e461b73a72\",\n                \"transaction_id\": \"transaction_2b3a2c857f61220cb0\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"10.00\",\n                \"transaction_date\": \"2022-08-09T16:58:12.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"160693\"\n            },\n            {\n                \"card_number\": \"HLE6FON7\",\n                \"card_id\": \"card_68c1e574cdc6d89195\",\n                \"transaction_id\": \"transaction_ff30ed1b8cf8f42cc0\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"10.00\",\n                \"transaction_date\": \"2022-08-09T06:05:51.000Z\",\n                \"transaction_source\": \"VEND\",\n                \"activity_type\": null,\n                \"client_order_id\": \"2795\"\n            },\n            {\n                \"card_number\": \"HLUUPG6P\",\n                \"card_id\": \"card_c6d9082fb77db6e684\",\n                \"transaction_id\": \"transaction_d1cd92823f336cd80a\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"10.00\",\n                \"transaction_date\": \"2022-08-05T12:51:20.000Z\",\n                \"transaction_source\": \"VEND\",\n                \"activity_type\": null,\n                \"client_order_id\": \"2789\"\n            },\n            {\n                \"card_number\": \"HLUUPG6P\",\n                \"card_id\": \"card_c6d9082fb77db6e684\",\n                \"transaction_id\": \"transaction_0558afe12ed51b5563\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-05T12:51:19.000Z\",\n                \"transaction_source\": \"VEND\",\n                \"activity_type\": null,\n                \"client_order_id\": \"2789\"\n            },\n            {\n                \"card_number\": \"HLUUPG6P\",\n                \"card_id\": \"card_c6d9082fb77db6e684\",\n                \"transaction_id\": \"transaction_38ec94620b04183c65\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-05T12:51:19.000Z\",\n                \"transaction_source\": \"VEND\",\n                \"activity_type\": null,\n                \"client_order_id\": \"2789\"\n            },\n            {\n                \"card_number\": \"HLLONHGK\",\n                \"card_id\": \"card_3495147d4305c9e206\",\n                \"transaction_id\": \"transaction_3546e02dce8910fd2a\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2022-08-04T22:00:30.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101226\"\n            },\n            {\n                \"card_number\": \"HLLONHGK\",\n                \"card_id\": \"card_3495147d4305c9e206\",\n                \"transaction_id\": \"transaction_64ea603c16313154e7\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-04T22:00:28.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101226\"\n            },\n            {\n                \"card_number\": \"HLLONHGK\",\n                \"card_id\": \"card_3495147d4305c9e206\",\n                \"transaction_id\": \"transaction_6cf34ad9b896c2e748\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-04T22:00:28.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101226\"\n            },\n            {\n                \"card_number\": \"HLDNS8QG\",\n                \"card_id\": \"card_d4f761d482997374c2\",\n                \"transaction_id\": \"transaction_544adde66b77740e7e\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2022-08-04T21:40:16.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101225\"\n            },\n            {\n                \"card_number\": \"HLDNS8QG\",\n                \"card_id\": \"card_d4f761d482997374c2\",\n                \"transaction_id\": \"transaction_cf8f6e3c3cfaf40783\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-04T21:40:13.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101225\"\n            },\n            {\n                \"card_number\": \"HLDNS8QG\",\n                \"card_id\": \"card_d4f761d482997374c2\",\n                \"transaction_id\": \"transaction_4a3a8de1106a8e2dac\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-04T21:40:13.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101225\"\n            },\n            {\n                \"card_number\": \"HLKZAYSM\",\n                \"card_id\": \"card_575765405088765337\",\n                \"transaction_id\": \"transaction_5b53eae5792d66e043\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"50.00\",\n                \"transaction_date\": \"2022-08-04T15:02:31.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLKZAYSM\",\n                \"card_id\": \"card_575765405088765337\",\n                \"transaction_id\": \"transaction_e2ace36ae005d8678a\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-04T15:02:28.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLKZAYSM\",\n                \"card_id\": \"card_575765405088765337\",\n                \"transaction_id\": \"transaction_84afeacacb26029cce\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-04T15:02:28.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HL2QEB1P\",\n                \"card_id\": \"card_5e9e15a4f652ab4eff\",\n                \"transaction_id\": \"transaction_b52729eb62e124cd7c\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"12.00\",\n                \"transaction_date\": \"2022-08-04T10:09:13.000Z\",\n                \"transaction_source\": \"API\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"HLM5RNZF\",\n                \"card_id\": \"card_82dbd8afc424a52128\",\n                \"transaction_id\": \"transaction_0d4f91a53e5f55e0f6\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2022-08-02T04:34:50.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101224\"\n            },\n            {\n                \"card_number\": \"HLM5RNZF\",\n                \"card_id\": \"card_82dbd8afc424a52128\",\n                \"transaction_id\": \"transaction_172f3c91dd9031c256\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-02T04:34:48.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101224\"\n            },\n            {\n                \"card_number\": \"HLM5RNZF\",\n                \"card_id\": \"card_82dbd8afc424a52128\",\n                \"transaction_id\": \"transaction_4cdef978a61a1dba35\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-08-02T04:34:48.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101224\"\n            },\n            {\n                \"card_number\": \"HLH81O8Y\",\n                \"card_id\": \"card_2d338015dc6c296457\",\n                \"transaction_id\": \"transaction_07545785ad1782d26c\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2022-07-30T22:31:13.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101223\"\n            },\n            {\n                \"card_number\": \"HLH81O8Y\",\n                \"card_id\": \"card_2d338015dc6c296457\",\n                \"transaction_id\": \"transaction_15b30036b36816dbc5\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-07-30T22:31:11.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101223\"\n            },\n            {\n                \"card_number\": \"HLH81O8Y\",\n                \"card_id\": \"card_2d338015dc6c296457\",\n                \"transaction_id\": \"transaction_0af42f9c82ba6dcb7a\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-07-30T22:31:11.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101223\"\n            },\n            {\n                \"card_number\": \"HLFQ3W00\",\n                \"card_id\": \"card_b68587ce4c086571d6\",\n                \"transaction_id\": \"transaction_21e37252b4a018bfe7\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2022-07-29T02:01:42.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101222\"\n            },\n            {\n                \"card_number\": \"HLFQ3W00\",\n                \"card_id\": \"card_b68587ce4c086571d6\",\n                \"transaction_id\": \"transaction_4aae3f686c63ffc93f\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-07-29T02:01:40.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101222\"\n            },\n            {\n                \"card_number\": \"HLFQ3W00\",\n                \"card_id\": \"card_b68587ce4c086571d6\",\n                \"transaction_id\": \"transaction_1f3f6e170702097b00\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-07-29T02:01:40.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101222\"\n            },\n            {\n                \"card_number\": \"HL3NDTUA\",\n                \"card_id\": \"card_0298ea10e461b73a72\",\n                \"transaction_id\": \"transaction_413f74a59ac5bafdf0\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"10.00\",\n                \"transaction_date\": \"2022-07-27T19:42:58.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"160684\"\n            },\n            {\n                \"card_number\": \"HL3NDTUA\",\n                \"card_id\": \"card_0298ea10e461b73a72\",\n                \"transaction_id\": \"transaction_8c00dcb1157e602732\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"10.00\",\n                \"transaction_date\": \"2022-07-27T19:39:28.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"160683\"\n            },\n            {\n                \"card_number\": \"HLZIQYCZ\",\n                \"card_id\": \"card_a7727917c0cd2bbbeb\",\n                \"transaction_id\": \"transaction_166f0fbcd645fe8018\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2022-07-27T13:46:54.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101221\"\n            },\n            {\n                \"card_number\": \"HLZIQYCZ\",\n                \"card_id\": \"card_a7727917c0cd2bbbeb\",\n                \"transaction_id\": \"transaction_6b5b071e765ca9b347\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-07-27T13:46:52.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101221\"\n            },\n            {\n                \"card_number\": \"HLZIQYCZ\",\n                \"card_id\": \"card_a7727917c0cd2bbbeb\",\n                \"transaction_id\": \"transaction_c0aba1bb56a84d034c\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-07-27T13:46:52.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101221\"\n            },\n            {\n                \"card_number\": \"HLZLYGRP\",\n                \"card_id\": \"card_8d84a412db2baf1b41\",\n                \"transaction_id\": \"transaction_918e02444ccb965f97\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2022-07-26T08:35:16.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101220\"\n            },\n            {\n                \"card_number\": \"HLZLYGRP\",\n                \"card_id\": \"card_8d84a412db2baf1b41\",\n                \"transaction_id\": \"transaction_9b50c1929322cbc484\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-07-26T08:35:14.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101220\"\n            },\n            {\n                \"card_number\": \"HLZLYGRP\",\n                \"card_id\": \"card_8d84a412db2baf1b41\",\n                \"transaction_id\": \"transaction_96dfe6075e63e88073\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-07-26T08:35:14.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101220\"\n            },\n            {\n                \"card_number\": \"HLLIDKIY\",\n                \"card_id\": \"card_fad70df07eddcd45d0\",\n                \"transaction_id\": \"transaction_f1dcba6c8bf0748303\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2022-07-25T09:21:53.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101219\"\n            },\n            {\n                \"card_number\": \"HLLIDKIY\",\n                \"card_id\": \"card_fad70df07eddcd45d0\",\n                \"transaction_id\": \"transaction_fd8bbfd82446e337ef\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-07-25T09:21:51.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101219\"\n            },\n            {\n                \"card_number\": \"HLLIDKIY\",\n                \"card_id\": \"card_fad70df07eddcd45d0\",\n                \"transaction_id\": \"transaction_628142ccd0c22d7580\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-07-25T09:21:51.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101219\"\n            },\n            {\n                \"card_number\": \"HLM3FNFS\",\n                \"card_id\": \"card_1675f38abe54343adb\",\n                \"transaction_id\": \"transaction_714b9b637cafa76f94\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2022-07-24T15:07:09.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101218\"\n            },\n            {\n                \"card_number\": \"HLM3FNFS\",\n                \"card_id\": \"card_1675f38abe54343adb\",\n                \"transaction_id\": \"transaction_e4301301ff6a076c9e\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-07-24T15:07:08.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101218\"\n            },\n            {\n                \"card_number\": \"HLM3FNFS\",\n                \"card_id\": \"card_1675f38abe54343adb\",\n                \"transaction_id\": \"transaction_2149eb905dc32ad405\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-07-24T15:07:08.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101218\"\n            },\n            {\n                \"card_number\": \"HLVGO4IH\",\n                \"card_id\": \"card_9a0b346e928f2664f0\",\n                \"transaction_id\": \"transaction_1fa6ef6122e7973033\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2022-07-23T06:22:27.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101217\"\n            },\n            {\n                \"card_number\": \"HLVGO4IH\",\n                \"card_id\": \"card_9a0b346e928f2664f0\",\n                \"transaction_id\": \"transaction_8499e9be15b8036bf5\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-07-23T06:22:25.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101217\"\n            },\n            {\n                \"card_number\": \"HLVGO4IH\",\n                \"card_id\": \"card_9a0b346e928f2664f0\",\n                \"transaction_id\": \"transaction_42690483628a30632f\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-07-23T06:22:25.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101217\"\n            },\n            {\n                \"card_number\": \"HL5EKAYZ\",\n                \"card_id\": \"card_b23910861a6ef763f3\",\n                \"transaction_id\": \"transaction_bb552be09995e1b822\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2022-07-22T20:28:32.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101216\"\n            },\n            {\n                \"card_number\": \"HL5EKAYZ\",\n                \"card_id\": \"card_b23910861a6ef763f3\",\n                \"transaction_id\": \"transaction_3c77c2fa569cc0a21e\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-07-22T20:28:31.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": \"101216\"\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"03ef9178-3ebd-4ada-9dda-b0300e05bac1"},{"name":"Issue Store Credit","id":"13e2ecf6-dcd5-45ea-8c32-7d4d55e3ffd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"store_credit\": {\n        \"amount\": 20,\n        \"customer_id\": \"customer_e702ced4664e52687b\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/storecredits/issue","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />customer_id  <br />card_id  <br />card_number  <br />customer_email  <br />client_customer_id &amp; client_customer_platform</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>card_id</code>: Store credit card id  <br /><code>card_number</code>: Store credit card number  <br /><code>customer_email</code>: Customer's email  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><strong>Yes</strong></td>\n<td>Default 0.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction</td>\n</tr>\n<tr>\n<td>custom_card_number</td>\n<td><strong>No</strong></td>\n<td>When provided 99minds won't generate card number and use the provided one</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>No</td>\n<td>Customer's name</td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td>No</td>\n<td>Customer's email</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to attach to transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction This is same as <code>customer_note</code>.</td>\n</tr>\n<tr>\n<td>opt_in_loyalty</td>\n<td>No</td>\n<td><code>Boolean</code> . Specify whether customers should be manually opted into the store credit program. This is required when loyalty opt in is enabled</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","storecredits","issue"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"98a74654-ad45-4e02-92e8-dd469abe2799","name":"Issue Store Credit","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"store_credit\": {\n        \"amount\": 20,\n        \"customer_id\": \"customer_e09d0e65c9612b26c7\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/storecredits"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"736d7584307a7306db61538644ea7140\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"537f64e1-c5b0-4e87-8b2a-9c85ec2a858f","enabled":true},{"key":"X-Runtime","value":"5.214018","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"store_credit\": {\n            \"customer_name\": \"MI\",\n            \"customer_email\": \"mi@gmail.com\",\n            \"customer_id\": \"customer_e09d0e65c9612b26c7\",\n            \"card_number\": \"HNV1NK-MFZF\",\n            \"balance\": \"20.00\",\n            \"card_id\": \"card_a0d21058dc4ca25fd2\",\n            \"last_transaction\": \"CREATION\",\n            \"created_at\": \"2021-12-24T06:40:28.000Z\",\n            \"transaction\": {\n                \"transaction_id\": \"transaction_7c54945f2b06aa9b02\",\n                \"transaction_amount\": \"20.0\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_date\": \"2021-12-24T06:40:32.000Z\",\n                \"client_order_id\": null,\n                \"note\": null\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Store credit card added!\",\n    \"errors\": []\n}"}],"_postman_id":"13e2ecf6-dcd5-45ea-8c32-7d4d55e3ffd9"},{"name":"Verify Store Credit","id":"8984e496-23b8-4386-81b1-ee5491c7909e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"store_credit\": {\n        \"card_id\": \"card_a0d21058dc4ca25fd2\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/storecredits/verify","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />customer_id  <br />card_id  <br />card_number  <br />client_customer_id &amp; client_customer_platform  <br /></td>\n<td><strong>Yes</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>card_id</code>: Store credit card id  <br /><code>card_number</code>: Store credit card number  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><strong>Yes</strong></td>\n<td>Default 0.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","storecredits","verify"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"4f8e01ed-f5f4-46d1-a2b6-64309d805187","name":"Verify Store Credit","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"store_credit\": {\n        \"card_id\": \"card_a0d21058dc4ca25fd2\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/storecredits/verify"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"209aae13699856dfba9b144cf8a27710\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"1fa42bf3-8310-4bea-aad5-1ac56000502d","enabled":true},{"key":"X-Runtime","value":"0.045129","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"store_credit\": {\n            \"customer_name\": \"MI\",\n            \"customer_email\": \"mi@gmail.com\",\n            \"customer_id\": \"customer_e09d0e65c9612b26c7\",\n            \"card_number\": \"HNV1NK-MFZF\",\n            \"balance\": \"20.00\",\n            \"card_id\": \"card_a0d21058dc4ca25fd2\",\n            \"last_transaction\": \"RELOAD\",\n            \"created_at\": \"2021-12-24T06:40:28.000Z\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"8984e496-23b8-4386-81b1-ee5491c7909e"},{"name":"Redeem Store Credits","id":"8213ee0f-2be2-4359-a953-1f5520d562bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"store_credit\": {\n        \"card_id\": \"card_164c3f888dc497e0e4\",\n        \"amount\": 10\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/storecredits/redeem","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />customer_id  <br />card_id  <br />card_number  <br />client_customer_id &amp; client_customer_platform</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>card_id</code>: Store credit card id  <br /><code>card_number</code>: Store credit card number  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><strong>Yes</strong></td>\n<td>Default 0.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to attach to transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","storecredits","redeem"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"adea9c2f-6ff3-4e97-a04a-59666990d141","name":"Redeem Store Credit","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"store_credit\": {\n        \"card_id\": \"card_a0d21058dc4ca25fd2\",\n        \"amount\": 10\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/storecredits/redeem"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"67dbaeafb5f206132057e879fb319eed\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"685218ab-54c1-47d5-a224-7061af9cb2e1","enabled":true},{"key":"X-Runtime","value":"1.483135","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"store_credit\": {\n            \"customer_name\": \"MI\",\n            \"customer_email\": \"mi@gmail.com\",\n            \"customer_id\": \"customer_e09d0e65c9612b26c7\",\n            \"card_number\": \"HNV1NK-MFZF\",\n            \"balance\": \"10.00\",\n            \"card_id\": \"card_a0d21058dc4ca25fd2\",\n            \"last_transaction\": \"RELOAD\",\n            \"created_at\": \"2021-12-24T06:40:28.000Z\",\n            \"transaction\": {\n                \"transaction_id\": \"transaction_92d72f3ca51a2917e1\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_date\": \"2021-12-24T06:44:23.000Z\",\n                \"client_order_id\": null,\n                \"note\": null\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Store credit redeemed\",\n    \"errors\": []\n}"}],"_postman_id":"8213ee0f-2be2-4359-a953-1f5520d562bc"},{"name":"Assign Store Credits","id":"cf41d9e8-6fc7-449a-b3dc-e761d5e5a5e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"store_credit\": {\n        \"card_number\": \"HMS8ZAFH\",\n\t\t\"customer_email\": \"robel.emelia@example.net\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/storecredits/assign","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />customer_id  <br />client_customer_id &amp; client_customer_platform</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>Any one of:  <br />card_id  <br />card_number</td>\n<td><strong>Yes</strong></td>\n<td><code>card_id</code>: Store credit card id  <br /><code>card_number</code>: Store credit card number</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to attach to transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td>No</td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","storecredits","assign"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"69588725-5344-4ad4-acb2-9eca4eba911c","name":"Assign Store Credits","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"store_credit\": {\n        \"card_number\": \"HMS8ZAFH\",\n\t\t\"customer_email\": \"robel.emelia@example.net\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/storecredits/assign"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"2eb0d5c9a6aca3a89643f5870e3e005c\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"dfd37994-afe4-494c-8f4f-f632479244fe","enabled":true},{"key":"X-Runtime","value":"1.141410","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"store_credit\": {\n            \"customer_name\": null,\n            \"customer_email\": \"robel.emelia@example.net\",\n            \"customer_id\": \"customer_52b500ec1a6187cd4f\",\n            \"card_number\": \"HMS8ZAFH\",\n            \"currency\": \"$\",\n            \"balance\": \"0.00\",\n            \"card_id\": \"card_55553f868fb9267954\",\n            \"last_transaction\": \"ASSIGN\",\n            \"created_at\": \"2022-02-21T08:44:57.000Z\",\n            \"transaction\": {\n                \"transaction_id\": \"transaction_d3e694ab31d58d6f6b\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_date\": \"2022-02-23T07:54:02.000Z\",\n                \"client_order_id\": null,\n                \"note\": null\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Card assigned to customer\",\n    \"errors\": []\n}"}],"_postman_id":"cf41d9e8-6fc7-449a-b3dc-e761d5e5a5e7"},{"name":"Toggle Status","id":"2b0c35bf-2026-4cee-b815-cf6684948e4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"store_credit\": {\n        \"card_number\": \"1039762837\",\n\t\t\"transaction_type\": \"DEACTIVATION\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/storecredits/toggle_status","description":"<p>This API endpoint allows you to toggle the status of a store credit card.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>card_number</td>\n<td><strong>Yes</strong></td>\n<td>The store credit card number (string) that you want to toggle the status for.</td>\n</tr>\n<tr>\n<td>transaction_type</td>\n<td><strong>Yes</strong></td>\n<td>The type of transaction to perform (string). Must be either \"DEACTIVATION\" or \"ACTIVATION\".</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to attach to transaction</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","storecredits","toggle_status"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"e524de72-5824-4d7c-bb14-b5b85e8591f3","name":"Toggle Status","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"store_credit\": {\n        \"card_number\": \"1039762837\",\n\t\t\"transaction_type\": \"DEACTIVATION\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/storecredits/toggle_status"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"039aa98fbd0464c3c223183c478d8ab6\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"48343e1f-8ecb-492c-9642-a0c1bf5141cd"},{"key":"X-Runtime","value":"0.061711"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"630"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"store_credit\": {\n            \"customer_name\": \"John Doe\",\n            \"customer_email\": \"john@example.com\",\n            \"customer_id\": \"customer_1555b26e787513fdf8\",\n            \"card_number\": \"1039762837\",\n            \"active\": false,\n            \"currency_code\": \"USD\",\n            \"balance\": \"100.00\",\n            \"card_id\": \"card_31005eb8afad672c57\",\n            \"last_transaction\": \"DEACTIVATION\",\n            \"created_at\": \"2025-09-07T08:53:27.000Z\",\n            \"transaction\": {\n                \"transaction_id\": \"transaction_e445f85cf954f3afa3\",\n                \"transaction_amount\": \"0.0\",\n                \"transaction_type\": \"DEACTIVATION\",\n                \"transaction_date\": \"2025-09-07T08:55:02.000Z\",\n                \"client_order_id\": null,\n                \"transaction_description\": null\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Card updated successfully!\",\n    \"errors\": []\n}"}],"_postman_id":"2b0c35bf-2026-4cee-b815-cf6684948e4e"},{"name":"Adjustment - Manual Credit","id":"02336e8d-23cc-41c4-b3de-4a942bedcc46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"store_credit\": {\n        \"amount\": 20,\n        \"customer_id\": \"customer_e702ced4664e52687b\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/storecredits/adjust/credit","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />customer_id  <br />card_id  <br />card_number  <br />customer_email  <br />client_customer_id &amp; client_customer_platform</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>card_id</code>: Store credit card id  <br /><code>card_number</code>: Store credit card number  <br /><code>customer_email</code>: Customer's email  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><strong>Yes</strong></td>\n<td>Default 0.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction</td>\n</tr>\n<tr>\n<td>custom_card_number</td>\n<td><strong>No</strong></td>\n<td>When provided 99minds won't generate card number and use the provided one</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>No</td>\n<td>Customer's name</td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td>No</td>\n<td>Customer's email</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to attach to transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","storecredits","adjust","credit"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"7a9423f7-d9a8-4c7e-b66c-fed726f243cf","name":"Adjustment - Manual Credit","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"store_credit\": {\n        \"amount\": 20,\n        \"customer_id\": \"customer_e702ced4664e52687b\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/storecredits/adjust/credit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"5fd584eeb59cf759fb364dfa7236b46f\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"62c6cb62-928c-41e8-bc3b-99b127d70202"},{"key":"X-Runtime","value":"0.923419"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"660"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"store_credit\": {\n            \"customer_name\": \"Brody Weimann\",\n            \"customer_email\": \"weimann.brody@example.com\",\n            \"customer_id\": \"customer_e702ced4664e52687b\",\n            \"card_number\": \"HLYQPZNN\",\n            \"balance\": \"342.00\",\n            \"currency_code\": \"USD\",\n            \"currency_symbol\": \"$\",\n            \"card_id\": \"card_9a8eaf6b5b3332b11f\",\n            \"last_transaction\": \"MANUAL_CREDIT\",\n            \"created_at\": \"2023-07-27T16:54:47.000Z\",\n            \"transaction\": {\n                \"transaction_id\": \"transaction_62e7e748fa05b261cf\",\n                \"transaction_amount\": \"20.0\",\n                \"transaction_type\": \"MANUAL_CREDIT\",\n                \"transaction_date\": \"2024-07-31T15:27:24.000Z\",\n                \"client_order_id\": null,\n                \"transaction_description\": null\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Store credit updated successfully!\",\n    \"errors\": []\n}"}],"_postman_id":"02336e8d-23cc-41c4-b3de-4a942bedcc46"},{"name":"Adjustment - Manual Debit","id":"f4e2138c-d0ae-4ee5-88c9-c6af722c0731","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"store_credit\": {\n        \"amount\": 25,\n        \"customer_id\": \"customer_e702ced4664e52687b\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/storecredits/adjust/debit","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />customer_id  <br />card_id  <br />card_number  <br />customer_email  <br />client_customer_id &amp; client_customer_platform</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>card_id</code>: Store credit card id  <br /><code>card_number</code>: Store credit card number  <br /><code>customer_email</code>: Customer's email  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><strong>Yes</strong></td>\n<td>Default 0.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction</td>\n</tr>\n<tr>\n<td>custom_card_number</td>\n<td><strong>No</strong></td>\n<td>When provided 99minds won't generate card number and use the provided one</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>No</td>\n<td>Customer's name</td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td>No</td>\n<td>Customer's email</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to attach to transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","storecredits","adjust","debit"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"3681fefb-62dd-4eff-abca-cb9b4ef47e2b","name":"Adjustment - Manual Debit","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"store_credit\": {\n        \"amount\": 25,\n        \"customer_id\": \"customer_e702ced4664e52687b\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/storecredits/adjust/debit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"793cbd1533acb6568b33ef8c2d52ada6\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"12258026-d4b2-4c99-9753-341f3925bb34"},{"key":"X-Runtime","value":"3.851049"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"658"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"store_credit\": {\n            \"customer_name\": \"Brody Weimann\",\n            \"customer_email\": \"weimann.brody@example.com\",\n            \"customer_id\": \"customer_e702ced4664e52687b\",\n            \"card_number\": \"HLYQPZNN\",\n            \"balance\": \"317.00\",\n            \"currency_code\": \"USD\",\n            \"currency_symbol\": \"$\",\n            \"card_id\": \"card_9a8eaf6b5b3332b11f\",\n            \"last_transaction\": \"MANUAL_DEBIT\",\n            \"created_at\": \"2023-07-27T16:54:47.000Z\",\n            \"transaction\": {\n                \"transaction_id\": \"transaction_7864d602186acbaa02\",\n                \"transaction_amount\": \"25.0\",\n                \"transaction_type\": \"MANUAL_DEBIT\",\n                \"transaction_date\": \"2024-07-31T15:28:27.000Z\",\n                \"client_order_id\": null,\n                \"transaction_description\": null\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Store credit updated successfully!\",\n    \"errors\": []\n}"}],"_postman_id":"f4e2138c-d0ae-4ee5-88c9-c6af722c0731"}],"id":"05d5e828-d127-4348-a36c-03687698a284","_postman_id":"05d5e828-d127-4348-a36c-03687698a284","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}}},{"name":"Loyalty Card","item":[{"name":"Get Loyalty cards","id":"123308a7-5e0f-416a-acd4-a03c2044fb00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards?page_no=1","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_no</td>\n<td><strong>Yes</strong></td>\n<td>Page no &gt; 0.</td>\n</tr>\n<tr>\n<td>card_id</td>\n<td><strong>No</strong></td>\n<td>Store credit card id</td>\n</tr>\n<tr>\n<td>customer_id</td>\n<td><strong>No</strong></td>\n<td>99minds generated customer id</td>\n</tr>\n<tr>\n<td>client_customer_id</td>\n<td><strong>No</strong></td>\n<td>Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.</td>\n</tr>\n<tr>\n<td>client_customer_platform</td>\n<td><strong>No</strong></td>\n<td>Any one of the supported platforms. <code>client_customer_platform</code> should be passed in along with <code>client_customer_id</code> for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>card_numbers</td>\n<td><strong>No</strong></td>\n<td>Comma separated list store credit card numbers. Max 50.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td><code>asc</code> or <code>desc</code>. Default <code>desc</code></td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of loyalty card</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of loyalty card</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","loyaltycards"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"page_no","value":"1"}],"variable":[]}},"response":[{"id":"798ae4a7-8e06-4f11-94de-2fa8df2fb799","name":"Get Loyalty cards","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.giftcard.99minds.io/api/v1/loyaltycards?page_no=1","host":["https://api.giftcard.99minds.io"],"path":["api","v1","loyaltycards"],"query":[{"key":"page_no","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"2d6b11f86e253a16c0365504d0b25fbf\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"42e78bce-29d5-4b82-9d33-c169bf2fa80d","enabled":true},{"key":"X-Runtime","value":"0.057483","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"total_records\": 24,\n        \"total_pages\": 1,\n        \"current_page\": 1,\n        \"next_page\": null,\n        \"prev_page\": null,\n        \"version\": {\n            \"min\": 4227,\n            \"max\": 4389\n        },\n        \"loyalty_cards\": [\n            {\n                \"customer_name\": null,\n                \"customer_email\": null,\n                \"customer_id\": null,\n                \"card_number\": \"DBZMAFSG\",\n                \"currency\": \"$\",\n                \"balance\": \"0.0\",\n                \"card_id\": \"card_a9643141ac1101daab\",\n                \"last_transaction\": \"CREATION\",\n                \"created_at\": \"2022-02-21T08:47:52.000Z\"\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"123308a7-5e0f-416a-acd4-a03c2044fb00"},{"name":"Get Loyalty Card Detail","id":"1884ac89-8c8a-424a-ace9-0358ca310683","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/card_959c0dbef523765579","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","loyaltycards","card_959c0dbef523765579"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"daad43f5-e0ba-49f1-b78a-657f55ff1a4f","name":"Get Loyalty Card Detail","originalRequest":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/card_959c0dbef523765579"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"3d4343cef5182c083a635d31f8d61d89\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"707df70c-9256-4da3-aaab-42a6429bcd63","enabled":true},{"key":"X-Runtime","value":"0.232452","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"loyalty_card\": {\n            \"customer_name\": \"Mrudul\",\n            \"customer_email\": \"mrudultarwatkar@gmail.com\",\n            \"customer_id\": \"user_15ac23bb8ac8db03c6\",\n            \"card_number\": \"4034534939120483\",\n            \"currency\": \"$\",\n            \"balance\": \"0.0\",\n            \"card_id\": \"card_959c0dbef523765579\",\n            \"last_transaction\": \"CREATION\",\n            \"created_at\": \"2021-08-16T05:30:13.000Z\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"1884ac89-8c8a-424a-ace9-0358ca310683"},{"name":"Get Loyalty Card Transactions","id":"ec21650d-cafb-4176-97e5-ae73f34a5b42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/transactions?page_no=1","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_no</td>\n<td><strong>Yes</strong></td>\n<td>Page no &gt; 0.</td>\n</tr>\n<tr>\n<td>card_id</td>\n<td><strong>No</strong></td>\n<td>Loyalty card <code>card_id</code>.</td>\n</tr>\n<tr>\n<td>card_numbers</td>\n<td><strong>No</strong></td>\n<td>Comma separated list of Loyalty card card numbers. Max 50.</td>\n</tr>\n<tr>\n<td>transaction_type</td>\n<td><strong>No</strong></td>\n<td>Type of transaction</td>\n</tr>\n<tr>\n<td>transaction_source</td>\n<td><strong>No</strong></td>\n<td>Source of transaction</td>\n</tr>\n<tr>\n<td>customer_id</td>\n<td><strong>No</strong></td>\n<td>99minds generated customer id</td>\n</tr>\n<tr>\n<td>client_customer_id</td>\n<td><strong>No</strong></td>\n<td>Customer id provided by client when creating/updating customer.  <br />Do note that client_customer_id are platform specific.</td>\n</tr>\n<tr>\n<td>client_customer_platform</td>\n<td><strong>No</strong></td>\n<td>Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same id for a specific customer</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID linked to the transaction.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td><code>asc</code> or <code>desc</code>. Default <code>desc</code></td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of Loyalty card</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of Loyalty card</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","loyaltycards","transactions"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"page_no","value":"1"}],"variable":[]}},"response":[{"id":"31854c51-dd48-4d83-abd4-0847a486d89d","name":"Get Loyalty Card Transactions","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.giftcard.99minds.io/api/v1/loyaltycards/transactions?page_no=1","host":["https://api.giftcard.99minds.io"],"path":["api","v1","loyaltycards","transactions"],"query":[{"key":"page_no","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"42bd50148780c727385038436a41d693\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"0a977717-8d58-489f-8b26-124c80f26a40"},{"key":"X-Runtime","value":"0.085590"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"22246"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"total_pages\": 1,\n        \"current_page\": 1,\n        \"next_page\": null,\n        \"prev_page\": null,\n        \"transactions\": [\n            {\n                \"card_number\": \"27287909\",\n                \"card_id\": \"card_7aa9db8c2a066ff837\",\n                \"transaction_id\": \"transaction_dc66cd61cda9d69e4d\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2024-02-25T10:55:34.000Z\",\n                \"transaction_source\": \"WIDGET\",\n                \"activity_type\": \"FACEBOOK_SHARE\",\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"27287909\",\n                \"card_id\": \"card_7aa9db8c2a066ff837\",\n                \"transaction_id\": \"transaction_17b1aaf6ba87bdedbc\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2024-02-25T10:54:11.000Z\",\n                \"transaction_source\": \"WIDGET\",\n                \"activity_type\": \"FACEBOOK_LIKE\",\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"27287909\",\n                \"card_id\": \"card_7aa9db8c2a066ff837\",\n                \"transaction_id\": \"transaction_8b9c8e4cbd4e15722a\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2024-02-25T10:53:15.000Z\",\n                \"transaction_source\": \"WIDGET\",\n                \"activity_type\": \"FACEBOOK_LIKE\",\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"27287909\",\n                \"card_id\": \"card_7aa9db8c2a066ff837\",\n                \"transaction_id\": \"transaction_c72cde553f8b448324\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2024-02-25T10:52:05.000Z\",\n                \"transaction_source\": \"WIDGET\",\n                \"activity_type\": \"FACEBOOK_LIKE\",\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"27287909\",\n                \"card_id\": \"card_7aa9db8c2a066ff837\",\n                \"transaction_id\": \"transaction_8bce6231197f8de9bc\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2024-02-25T10:52:05.000Z\",\n                \"transaction_source\": \"WIDGET\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"27287909\",\n                \"card_id\": \"card_7aa9db8c2a066ff837\",\n                \"transaction_id\": \"transaction_17254cff299a31d481\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2024-02-25T10:52:05.000Z\",\n                \"transaction_source\": \"WIDGET\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"41450710\",\n                \"card_id\": \"card_06607e423e1c85de82\",\n                \"transaction_id\": \"transaction_a3a2ac7b64d37bf9db\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"12.00\",\n                \"transaction_date\": \"2023-11-30T11:51:57.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"41450710\",\n                \"card_id\": \"card_06607e423e1c85de82\",\n                \"transaction_id\": \"transaction_7c669addeba1a74d9a\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-11-30T11:49:48.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"41450710\",\n                \"card_id\": \"card_06607e423e1c85de82\",\n                \"transaction_id\": \"transaction_bb915f120183c22883\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-11-30T11:49:48.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"51055281\",\n                \"card_id\": \"card_5b46dfc3ea0a230268\",\n                \"transaction_id\": \"transaction_031f82a1c3ccf4c898\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_amount\": \"2.00\",\n                \"transaction_date\": \"2023-11-17T12:48:09.000Z\",\n                \"transaction_source\": \"WIDGET\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"23030439\",\n                \"card_id\": \"card_0b1a84769512c4562d\",\n                \"transaction_id\": \"transaction_aedcf0c560b91c99d6\",\n                \"transaction_type\": \"DEACTIVATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-08-24T09:12:00.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"NATUNE\",\n                \"card_id\": \"card_19233e6717c2fe9fb9\",\n                \"transaction_id\": \"transaction_693d04dd45c373098f\",\n                \"transaction_type\": \"DEACTIVATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-08-24T08:23:02.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"NATUNE\",\n                \"card_id\": \"card_19233e6717c2fe9fb9\",\n                \"transaction_id\": \"transaction_ee0dad7a438c3931cc\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-08-23T14:19:02.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"NATUNE\",\n                \"card_id\": \"card_19233e6717c2fe9fb9\",\n                \"transaction_id\": \"transaction_1318db9d54473bc156\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-08-23T14:19:02.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"Mrudul2\",\n                \"card_id\": \"card_242ceba2fc077c6c78\",\n                \"transaction_id\": \"transaction_1d533d330fda585a4a\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-08-23T14:14:14.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"Mrudul2\",\n                \"card_id\": \"card_242ceba2fc077c6c78\",\n                \"transaction_id\": \"transaction_c45f82ef47440834bb\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-08-23T14:14:14.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"19383588\",\n                \"card_id\": \"card_0d3d289ac947c0eaae\",\n                \"transaction_id\": \"transaction_c3d98c33a39038cc05\",\n                \"transaction_type\": \"MANUAL_DEBIT\",\n                \"transaction_amount\": \"45.00\",\n                \"transaction_date\": \"2023-08-23T11:36:49.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"56846354\",\n                \"card_id\": \"card_df0f236e30ebfbdaaa\",\n                \"transaction_id\": \"transaction_67cf34bb303320a842\",\n                \"transaction_type\": \"MANUAL_DEBIT\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2023-08-22T10:59:39.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"56846354\",\n                \"card_id\": \"card_df0f236e30ebfbdaaa\",\n                \"transaction_id\": \"transaction_36bd280a9fbf975b95\",\n                \"transaction_type\": \"MANUAL_CREDIT\",\n                \"transaction_amount\": \"11.00\",\n                \"transaction_date\": \"2023-08-22T10:59:24.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"56846354\",\n                \"card_id\": \"card_df0f236e30ebfbdaaa\",\n                \"transaction_id\": \"transaction_3706582cddeec8a802\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"90.00\",\n                \"transaction_date\": \"2023-08-22T10:58:08.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"56846354\",\n                \"card_id\": \"card_df0f236e30ebfbdaaa\",\n                \"transaction_id\": \"transaction_995ff6a43c243a65bc\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"11.00\",\n                \"transaction_date\": \"2023-08-22T10:57:58.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"19383588\",\n                \"card_id\": \"card_0d3d289ac947c0eaae\",\n                \"transaction_id\": \"transaction_7d5d480d5c7b4d22a4\",\n                \"transaction_type\": \"MANUAL_DEBIT\",\n                \"transaction_amount\": \"5.00\",\n                \"transaction_date\": \"2023-08-22T10:22:32.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"19383588\",\n                \"card_id\": \"card_0d3d289ac947c0eaae\",\n                \"transaction_id\": \"transaction_9db8e18666e455f408\",\n                \"transaction_type\": \"MANUAL_DEBIT\",\n                \"transaction_amount\": \"50.00\",\n                \"transaction_date\": \"2023-08-22T10:21:38.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"19383588\",\n                \"card_id\": \"card_0d3d289ac947c0eaae\",\n                \"transaction_id\": \"transaction_6709794dea4ef96373\",\n                \"transaction_type\": \"MANUAL_DEBIT\",\n                \"transaction_amount\": \"10.00\",\n                \"transaction_date\": \"2023-08-22T10:21:21.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"19383588\",\n                \"card_id\": \"card_0d3d289ac947c0eaae\",\n                \"transaction_id\": \"transaction_bb7f6feccad9c3d4ce\",\n                \"transaction_type\": \"MANUAL_CREDIT\",\n                \"transaction_amount\": \"11.00\",\n                \"transaction_date\": \"2023-08-22T10:20:48.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"19383588\",\n                \"card_id\": \"card_0d3d289ac947c0eaae\",\n                \"transaction_id\": \"transaction_65f0c9b6bc0a8f33b0\",\n                \"transaction_type\": \"MANUAL_DEBIT\",\n                \"transaction_amount\": \"100.00\",\n                \"transaction_date\": \"2023-08-22T09:21:27.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"19383588\",\n                \"card_id\": \"card_0d3d289ac947c0eaae\",\n                \"transaction_id\": \"transaction_686be6e574fb0e94f4\",\n                \"transaction_type\": \"MANUAL_CREDIT\",\n                \"transaction_amount\": \"17.00\",\n                \"transaction_date\": \"2023-08-22T09:19:21.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"19383588\",\n                \"card_id\": \"card_0d3d289ac947c0eaae\",\n                \"transaction_id\": \"transaction_6615aed5515199e741\",\n                \"transaction_type\": \"MANUAL_CREDIT\",\n                \"transaction_amount\": \"12.00\",\n                \"transaction_date\": \"2023-08-22T09:15:50.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"39476106\",\n                \"card_id\": \"card_6138c07e9b79040719\",\n                \"transaction_id\": \"transaction_7d669237c901cc1585\",\n                \"transaction_type\": \"EXPIRED\",\n                \"transaction_amount\": \"9.00\",\n                \"transaction_date\": \"2023-08-03T15:14:38.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"39476106\",\n                \"card_id\": \"card_6138c07e9b79040719\",\n                \"transaction_id\": \"transaction_26ff907e60792aad76\",\n                \"transaction_type\": \"EXPIRED\",\n                \"transaction_amount\": \"20.00\",\n                \"transaction_date\": \"2023-08-03T15:14:38.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"56846354\",\n                \"card_id\": \"card_df0f236e30ebfbdaaa\",\n                \"transaction_id\": \"transaction_48e0c594af11a2994b\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"12.00\",\n                \"transaction_date\": \"2023-07-31T16:42:32.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"56846354\",\n                \"card_id\": \"card_df0f236e30ebfbdaaa\",\n                \"transaction_id\": \"transaction_448935cb32c79057df\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-31T16:42:31.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"56846354\",\n                \"card_id\": \"card_df0f236e30ebfbdaaa\",\n                \"transaction_id\": \"transaction_8676410bdf8ec6c1cc\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-31T16:42:31.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"19383588\",\n                \"card_id\": \"card_0d3d289ac947c0eaae\",\n                \"transaction_id\": \"transaction_a8590b77a19b67c036\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"500.00\",\n                \"transaction_date\": \"2023-07-28T10:26:14.000Z\",\n                \"transaction_source\": \"HEARTLAND_RETAIL\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"19383588\",\n                \"card_id\": \"card_0d3d289ac947c0eaae\",\n                \"transaction_id\": \"transaction_6c0aba65c49293ad38\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"70.00\",\n                \"transaction_date\": \"2023-07-27T17:34:53.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"19383588\",\n                \"card_id\": \"card_0d3d289ac947c0eaae\",\n                \"transaction_id\": \"transaction_9da7fb14a1a0a65477\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-27T17:34:53.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"19383588\",\n                \"card_id\": \"card_0d3d289ac947c0eaae\",\n                \"transaction_id\": \"transaction_fa3acb33ef83b85dc8\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-27T17:34:53.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"92947524\",\n                \"card_id\": \"card_844bfe33a8acc1d60c\",\n                \"transaction_id\": \"transaction_dd5308b67957678c3d\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-16T08:09:02.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"92947524\",\n                \"card_id\": \"card_844bfe33a8acc1d60c\",\n                \"transaction_id\": \"transaction_e5bcf04c606b62c8bd\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"148.00\",\n                \"transaction_date\": \"2023-07-16T08:09:02.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"34608872\",\n                \"card_id\": \"card_8de085ce0d9f91bef7\",\n                \"transaction_id\": \"transaction_69599ebaf106f5cf05\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-16T08:09:02.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"34608872\",\n                \"card_id\": \"card_8de085ce0d9f91bef7\",\n                \"transaction_id\": \"transaction_608c247a8971b00061\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-16T08:09:02.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"34608872\",\n                \"card_id\": \"card_8de085ce0d9f91bef7\",\n                \"transaction_id\": \"transaction_514f951abe04ec5a0e\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"24.00\",\n                \"transaction_date\": \"2023-07-16T08:09:02.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"92947524\",\n                \"card_id\": \"card_844bfe33a8acc1d60c\",\n                \"transaction_id\": \"transaction_97df664be7ff5512d3\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-16T08:09:02.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"51055281\",\n                \"card_id\": \"card_5b46dfc3ea0a230268\",\n                \"transaction_id\": \"transaction_be836cbc7f9e8de54a\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"25.00\",\n                \"transaction_date\": \"2023-07-16T08:09:02.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"51055281\",\n                \"card_id\": \"card_5b46dfc3ea0a230268\",\n                \"transaction_id\": \"transaction_9d84aefd9f676727f4\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"36.00\",\n                \"transaction_date\": \"2023-07-16T08:09:01.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"51055281\",\n                \"card_id\": \"card_5b46dfc3ea0a230268\",\n                \"transaction_id\": \"transaction_90e0811109df86dbbf\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-16T08:09:01.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"51055281\",\n                \"card_id\": \"card_5b46dfc3ea0a230268\",\n                \"transaction_id\": \"transaction_d6b22ba24a29f037ac\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-16T08:09:01.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"39476106\",\n                \"card_id\": \"card_6138c07e9b79040719\",\n                \"transaction_id\": \"transaction_4e892c19467ce793cb\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"9.00\",\n                \"transaction_date\": \"2023-07-12T08:34:19.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"39476106\",\n                \"card_id\": \"card_6138c07e9b79040719\",\n                \"transaction_id\": \"transaction_0c64358da20d4da5af\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"22.00\",\n                \"transaction_date\": \"2023-07-12T08:31:33.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"39476106\",\n                \"card_id\": \"card_6138c07e9b79040719\",\n                \"transaction_id\": \"transaction_88d002b09e0560ac4c\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"20.00\",\n                \"transaction_date\": \"2023-07-12T08:30:24.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"30310341\",\n                \"card_id\": \"card_3aa46f1904be8a0b70\",\n                \"transaction_id\": \"transaction_816e5ef0dd207cf750\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"2.00\",\n                \"transaction_date\": \"2023-07-04T08:43:05.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"39476106\",\n                \"card_id\": \"card_6138c07e9b79040719\",\n                \"transaction_id\": \"transaction_b419f8cc57e09c864f\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-01T18:32:43.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"39476106\",\n                \"card_id\": \"card_6138c07e9b79040719\",\n                \"transaction_id\": \"transaction_7aa2692532b830854f\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-01T18:32:43.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"14519896\",\n                \"card_id\": \"card_26aae4a367ec178006\",\n                \"transaction_id\": \"transaction_2c9530a7741c8e1fc2\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-01T18:32:42.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"14519896\",\n                \"card_id\": \"card_26aae4a367ec178006\",\n                \"transaction_id\": \"transaction_28597933dd3bd2b4b6\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-07-01T18:32:42.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"12298190\",\n                \"card_id\": \"card_4cc3c1ac291c4032a7\",\n                \"transaction_id\": \"transaction_0df7f1eb34b1166ab5\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"400.00\",\n                \"transaction_date\": \"2023-06-16T10:11:31.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"12298190\",\n                \"card_id\": \"card_4cc3c1ac291c4032a7\",\n                \"transaction_id\": \"transaction_e4588287693009b88a\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-06-16T10:11:28.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"12298190\",\n                \"card_id\": \"card_4cc3c1ac291c4032a7\",\n                \"transaction_id\": \"transaction_bd4b54daafb3401e8a\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-06-16T10:11:28.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"23030439\",\n                \"card_id\": \"card_0b1a84769512c4562d\",\n                \"transaction_id\": \"transaction_e1d501f709104788f4\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"50.00\",\n                \"transaction_date\": \"2023-06-15T09:08:32.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"23030439\",\n                \"card_id\": \"card_0b1a84769512c4562d\",\n                \"transaction_id\": \"transaction_db8e6a422884bc98c4\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"50.00\",\n                \"transaction_date\": \"2023-06-15T09:06:39.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"23030439\",\n                \"card_id\": \"card_0b1a84769512c4562d\",\n                \"transaction_id\": \"transaction_15027cbfdaea8d41e1\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-06-15T09:06:36.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"23030439\",\n                \"card_id\": \"card_0b1a84769512c4562d\",\n                \"transaction_id\": \"transaction_d05e29329bbdef6a9e\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2023-06-15T09:06:35.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"30310341\",\n                \"card_id\": \"card_3aa46f1904be8a0b70\",\n                \"transaction_id\": \"transaction_a4ef820de3d4f7fddf\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_amount\": \"10.00\",\n                \"transaction_date\": \"2022-08-17T05:29:46.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"30310341\",\n                \"card_id\": \"card_3aa46f1904be8a0b70\",\n                \"transaction_id\": \"transaction_4ebe2f1117ab00f981\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"10.00\",\n                \"transaction_date\": \"2022-08-17T05:28:31.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"30310341\",\n                \"card_id\": \"card_3aa46f1904be8a0b70\",\n                \"transaction_id\": \"transaction_b0db7a6a2d79b724ed\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"50.00\",\n                \"transaction_date\": \"2022-08-17T05:26:51.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"31417249\",\n                \"card_id\": \"card_8d8fc450657db714f1\",\n                \"transaction_id\": \"transaction_91eba20f6b23f61b85\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_amount\": \"10.00\",\n                \"transaction_date\": \"2022-06-21T06:51:56.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"31417249\",\n                \"card_id\": \"card_8d8fc450657db714f1\",\n                \"transaction_id\": \"transaction_18149c50e7395ddea6\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_amount\": \"10.00\",\n                \"transaction_date\": \"2022-06-21T06:50:39.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"31417249\",\n                \"card_id\": \"card_8d8fc450657db714f1\",\n                \"transaction_id\": \"transaction_94144f8a4ecd620676\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"10.00\",\n                \"transaction_date\": \"2022-06-21T06:41:00.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"31417249\",\n                \"card_id\": \"card_8d8fc450657db714f1\",\n                \"transaction_id\": \"transaction_f0c00f7d02f7f404da\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"20.00\",\n                \"transaction_date\": \"2022-06-21T06:39:19.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"31417249\",\n                \"card_id\": \"card_8d8fc450657db714f1\",\n                \"transaction_id\": \"transaction_3e54a99ac81a66673e\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_amount\": \"20.00\",\n                \"transaction_date\": \"2022-06-21T06:37:51.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"31417249\",\n                \"card_id\": \"card_8d8fc450657db714f1\",\n                \"transaction_id\": \"transaction_03a36786f6822b28ba\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-06-21T06:16:22.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"30310341\",\n                \"card_id\": \"card_3aa46f1904be8a0b70\",\n                \"transaction_id\": \"transaction_80dbd42cfdf7f14c72\",\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-06-21T06:15:00.000Z\",\n                \"transaction_source\": \"WEBPOS\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"31417249\",\n                \"card_id\": \"card_8d8fc450657db714f1\",\n                \"transaction_id\": \"transaction_433c3fcb46323be799\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-06-21T05:28:06.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"30310341\",\n                \"card_id\": \"card_3aa46f1904be8a0b70\",\n                \"transaction_id\": \"transaction_1b2bae580097a151d8\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-06-21T05:28:06.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            },\n            {\n                \"card_number\": \"73618030\",\n                \"card_id\": \"card_4d9a65738436ff2662\",\n                \"transaction_id\": \"transaction_5c5606629c1dda2130\",\n                \"transaction_type\": \"CREATION\",\n                \"transaction_amount\": \"0.00\",\n                \"transaction_date\": \"2022-06-21T05:28:05.000Z\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"activity_type\": null,\n                \"client_order_id\": null\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"ec21650d-cafb-4176-97e5-ae73f34a5b42"},{"name":"Issue Loyalty Card","id":"9fe1559d-13f1-4f4e-93f2-2d5de64b36cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"loyalty_card\": {\n        \"amount\": 20,\n        \"customer_id\": \"customer_e5762e7fd464c15260\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/issue","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />customer_id  <br />card_id  <br />card_number  <br />customer_email  <br />client_customer_id &amp; client_customer_platform</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>card_id</code>: Store credit card id  <br /><code>card_number</code>: Store credit card number  <br /><code>customer_email</code>: Customer's email  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported <a href=\"#platforms\">platforms</a>. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><strong>Yes</strong></td>\n<td>Default 0.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction</td>\n</tr>\n<tr>\n<td>custom_card_number</td>\n<td><strong>No</strong></td>\n<td>When provided 99minds won't generate card number and use the provided one</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>No</td>\n<td>Customer's name</td>\n</tr>\n<tr>\n<td>point_expiration_date</td>\n<td><strong>No</strong></td>\n<td>Date when the points should expire</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to attach to transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction This is same as <code>customer_note</code>.</td>\n</tr>\n<tr>\n<td>opt_in_loyalty</td>\n<td>No</td>\n<td><code>Boolean</code> . Specify whether customers should be manually opted into the loyalty program. This is required when loyalty program opt in is enabled</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","loyaltycards","issue"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"da311b1d-88e1-4e5f-a3bc-c71f55100422","name":"Issue Loyalty Card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"loyalty_card\": {\n        \"amount\": 20,\n        \"customer_id\": \"customer_e09d0e65c9612b26c7\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"4418a2fa15ec0d32cbaf469fb15f9f26\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"0c89c15f-be82-4bec-b211-19139f2e9f5d","enabled":true},{"key":"X-Runtime","value":"6.164134","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"loyalty_card\": {\n            \"customer_name\": \"MI\",\n            \"customer_email\": \"mi@gmail.com\",\n            \"customer_id\": \"customer_e09d0e65c9612b26c7\",\n            \"card_number\": \"DBZ6E-ILDSE-MYVQY-M\",\n            \"currency\": \"$\",\n            \"balance\": \"20.0\",\n            \"card_id\": \"card_7d1333f1c87b01e84c\",\n            \"last_transaction\": \"CREATION\",\n            \"created_at\": \"2021-12-24T06:14:13.000Z\",\n            \"transaction\": {\n                \"transaction_id\": \"transaction_25d36ee10b6e45befe\",\n                \"transaction_amount\": \"20.0\",\n                \"transaction_type\": \"RELOAD\",\n                \"transaction_date\": \"2021-12-24T06:14:18.000Z\",\n                \"client_order_id\": null,\n                \"note\": null\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Loyalty points issued\",\n    \"errors\": []\n}"}],"_postman_id":"9fe1559d-13f1-4f4e-93f2-2d5de64b36cb"},{"name":"Verify Loyalty Card","id":"9e6695d4-bf12-49bf-a4ac-8a10f8da9a19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"loyalty_card\": {\n        \"card_id\": \"card_7d1333f1c87b01e84c\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/verify","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />customer_id  <br />card_id  <br />card_number  <br />client_customer_id &amp; client_customer_platform  <br /></td>\n<td><strong>Yes</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>card_id</code>: Store credit card id  <br /><code>card_number</code>: Store credit card number  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><strong>Yes</strong></td>\n<td>Default 0.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","loyaltycards","verify"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"e5f9c114-99d5-4e92-8c45-ffb4671642b6","name":"Verify Loyalty Card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"loyalty_card\": {\n        \"card_id\": \"card_7d1333f1c87b01e84c\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/verify"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"6a3378f8ddbb5044399cafabd5c0ef64\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"9f6ef9ca-f2d6-471a-917f-32a3108affe5","enabled":true},{"key":"X-Runtime","value":"0.026695","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"loyalty_card\": {\n            \"customer_name\": \"MI\",\n            \"customer_email\": \"mi@gmail.com\",\n            \"customer_id\": \"customer_e09d0e65c9612b26c7\",\n            \"card_number\": \"DBZ6E-ILDSE-MYVQY-M\",\n            \"currency\": \"$\",\n            \"balance\": \"20.0\",\n            \"card_id\": \"card_7d1333f1c87b01e84c\",\n            \"last_transaction\": \"RELOAD\",\n            \"created_at\": \"2021-12-24T06:14:13.000Z\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"9e6695d4-bf12-49bf-a4ac-8a10f8da9a19"},{"name":"Redeem Loyalty Card","id":"083e74ff-af50-440f-8e12-82791b4de117","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"loyalty_card\": {\n        \"card_id\": \"card_7d1333f1c87b01e84c\",\n        \"amount\": 10\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/redeem","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />customer_id  <br />card_id  <br />card_number  <br />client_customer_id &amp; client_customer_platform</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>card_id</code>: Store credit card id  <br /><code>card_number</code>: Store credit card number  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><strong>Yes</strong></td>\n<td>Default 0.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to attach to transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>enforce_balance_check</td>\n<td>No</td>\n<td>Default: <code>False</code>. If set to <code>True</code>, an error will be thrown if the amount exceeds the available balance.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","loyaltycards","redeem"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"294981fd-95f0-41ed-be33-fabf3bf0d4a7","name":"Redeem Loyalty Card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"loyalty_card\": {\n        \"card_id\": \"card_7d1333f1c87b01e84c\",\n        \"amount\": 10\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/redeem"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"ab887e79ace5489828bdc97e626d3f21\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"d21f5eb2-76e3-43ac-bc4b-3f64a6393fad","enabled":true},{"key":"X-Runtime","value":"1.137223","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"loyalty_card\": {\n            \"customer_name\": \"MI\",\n            \"customer_email\": \"mi@gmail.com\",\n            \"customer_id\": \"customer_e09d0e65c9612b26c7\",\n            \"card_number\": \"DBZ6E-ILDSE-MYVQY-M\",\n            \"currency\": \"$\",\n            \"balance\": \"10.0\",\n            \"card_id\": \"card_7d1333f1c87b01e84c\",\n            \"last_transaction\": \"RELOAD\",\n            \"created_at\": \"2021-12-24T06:14:13.000Z\",\n            \"transaction\": {\n                \"transaction_id\": \"transaction_6f333f6dd3700c09e6\",\n                \"transaction_amount\": \"10.0\",\n                \"transaction_type\": \"REDEMPTION\",\n                \"transaction_date\": \"2021-12-24T06:22:25.000Z\",\n                \"client_order_id\": null,\n                \"note\": null\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Loyalty points redeemed\",\n    \"errors\": []\n}"}],"_postman_id":"083e74ff-af50-440f-8e12-82791b4de117"},{"name":"Assign Loyalty Card","id":"cc8fc3d9-2e71-4331-ae0a-b3b8bb19abb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"loyalty_card\": {\n        \"card_number\": \"DBZMAFSG\",\n\t\t\"customer_email\": \"robel.emelia@example.net\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/assign","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />customer_id  <br />client_customer_id &amp; client_customer_platform</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>Any one of:  <br />card_id  <br />card_number</td>\n<td><strong>Yes</strong></td>\n<td><code>card_id</code>: Loyalty card id  <br /><code>card_number</code>: Loyalty card number</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to attach to transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","loyaltycards","assign"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"032a45f5-88c9-46b3-9fd6-60aeb25f8105","name":"Assign Loyalty Card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"loyalty_card\": {\n        \"card_number\": \"DBZMAFSG\",\n\t\t\"customer_email\": \"robel.emelia@example.net\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/assign"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"b5966381070b4449096c1c44dae9cefc\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"cd9c4e34-23d3-467a-bd43-a7637ae731a2","enabled":true},{"key":"X-Runtime","value":"1.497168","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"loyalty_card\": {\n            \"customer_name\": null,\n            \"customer_email\": \"robel.emelia@example.net\",\n            \"customer_id\": \"customer_52b500ec1a6187cd4f\",\n            \"card_number\": \"DBZMAFSG\",\n            \"currency\": \"$\",\n            \"balance\": null,\n            \"card_id\": \"card_a9643141ac1101daab\",\n            \"last_transaction\": \"ASSIGN\",\n            \"created_at\": \"2022-02-21T08:47:52.000Z\",\n            \"transaction\": {\n                \"transaction_id\": \"transaction_d59ee5b2f46e0a30e8\",\n                \"transaction_amount\": null,\n                \"transaction_type\": \"ASSIGN\",\n                \"transaction_date\": \"2022-02-23T08:14:47.000Z\",\n                \"client_order_id\": null,\n                \"note\": null\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Card assigned to customer\",\n    \"errors\": []\n}"}],"_postman_id":"cc8fc3d9-2e71-4331-ae0a-b3b8bb19abb0"},{"name":"Toggle Status","id":"260ea6c4-854f-4a58-b87a-cf0a5d2a567e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"loyalty_card\": {\n        \"card_number\": \"70262962\",\n\t\t\"transaction_type\": \"DEACTIVATION\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/toggle_status","description":"<p>This API endpoint allows you to toggle the status of a loyalty card.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>card_number</td>\n<td><strong>Yes</strong></td>\n<td>The loyalty card number (string) that you want to toggle the status for.</td>\n</tr>\n<tr>\n<td>transaction_type</td>\n<td><strong>Yes</strong></td>\n<td>The type of transaction to perform (string). Must be either \"DEACTIVATION\" or \"ACTIVATION\".</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to attach to transaction</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","loyaltycards","toggle_status"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"da737c40-3a79-49bc-b071-641452985961","name":"Toggle Card Status","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"loyalty_card\": {\n        \"card_number\": \"70262962\",\n\t\t\"transaction_type\": \"DEACTIVATION\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/toggle_status"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"70feff39dcfaeef0f71fa4d48678b194\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"16ca22f2-d52b-4873-808f-4332b0f19c78"},{"key":"X-Runtime","value":"0.062085"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"596"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"loyalty_card\": {\n            \"customer_name\": \"Rustam Rutela\",\n            \"customer_email\": \"rusam@gmail.com\",\n            \"customer_id\": \"user_da6df7a161c58e07cb\",\n            \"active\": false,\n            \"card_number\": \"70262962\",\n            \"balance\": 50,\n            \"card_id\": \"card_207541a66a82b1ac94\",\n            \"last_transaction\": \"DEACTIVATION\",\n            \"created_at\": \"2025-03-20T07:34:37.000Z\",\n            \"transaction\": {\n                \"transaction_id\": \"transaction_9bdf9dca36793df3ce\",\n                \"transaction_amount\": 0,\n                \"transaction_type\": \"DEACTIVATION\",\n                \"transaction_date\": \"2025-09-06T10:42:58.000Z\",\n                \"client_order_id\": null,\n                \"transaction_description\": null\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Card updated successfully!\",\n    \"errors\": []\n}"}],"_postman_id":"260ea6c4-854f-4a58-b87a-cf0a5d2a567e"},{"name":"Adjustment - Manual Credit","id":"adce3726-5b2f-4b9d-b975-96d939beb944","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"loyalty_card\": {\n        \"amount\": 20,\n        \"customer_id\": \"customer_e5762e7fd464c15260\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/adjust/credit","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />customer_id  <br />card_id  <br />card_number  <br />customer_email  <br />client_customer_id &amp; client_customer_platform</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>card_id</code>: Store credit card id  <br /><code>card_number</code>: Store credit card number  <br /><code>customer_email</code>: Customer's email  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported <a href=\"#platforms\">platforms</a>. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><strong>Yes</strong></td>\n<td>Default 0.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction</td>\n</tr>\n<tr>\n<td>custom_card_number</td>\n<td><strong>No</strong></td>\n<td>When provided 99minds won't generate card number and use the provided one</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>No</td>\n<td>Customer's name</td>\n</tr>\n<tr>\n<td>point_expiration_date</td>\n<td><strong>No</strong></td>\n<td>Date when the points should expire</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to attach to transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","loyaltycards","adjust","credit"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"b104befa-fe40-4a4a-935c-7df93f2dc992","name":"Adjustment - Manual Credit","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"loyalty_card\": {\n        \"amount\": 20,\n        \"customer_id\": \"customer_e5762e7fd464c15260\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/adjust/credit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"091d7c90b66b40e3c3cd99b5ccc153a6\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"722fb9bb-6181-4926-ad59-91de67bb824e"},{"key":"X-Runtime","value":"0.288537"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"565"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"loyalty_card\": {\n            \"customer_name\": null,\n            \"customer_email\": null,\n            \"customer_id\": \"customer_e5762e7fd464c15260\",\n            \"card_number\": \"20972405\",\n            \"balance\": 60,\n            \"card_id\": \"card_11ad50cc40fd31e7d0\",\n            \"last_transaction\": \"MANUAL_CREDIT\",\n            \"created_at\": \"2024-05-09T14:38:20.000Z\",\n            \"transaction\": {\n                \"transaction_id\": \"transaction_6f6ab5131f97369bad\",\n                \"transaction_amount\": 20,\n                \"transaction_type\": \"MANUAL_CREDIT\",\n                \"transaction_date\": \"2024-07-31T15:25:11.000Z\",\n                \"client_order_id\": null,\n                \"transaction_description\": null\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Point updated successfully!\",\n    \"errors\": []\n}"}],"_postman_id":"adce3726-5b2f-4b9d-b975-96d939beb944"},{"name":"Adjustment - Manual Debit","id":"c0e391d2-9219-42f3-b205-54af7e70270d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"loyalty_card\": {\n        \"amount\": 20,\n        \"customer_id\": \"customer_e5762e7fd464c15260\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/adjust/debit","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />customer_id  <br />card_id  <br />card_number  <br />customer_email  <br />client_customer_id &amp; client_customer_platform</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>card_id</code>: Store credit card id  <br /><code>card_number</code>: Store credit card number  <br /><code>customer_email</code>: Customer's email  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported <a href=\"#platforms\">platforms</a>. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><strong>Yes</strong></td>\n<td>Default 0.</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction</td>\n</tr>\n<tr>\n<td>custom_card_number</td>\n<td><strong>No</strong></td>\n<td>When provided 99minds won't generate card number and use the provided one</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>No</td>\n<td>Customer's name</td>\n</tr>\n<tr>\n<td>point_expiration_date</td>\n<td><strong>No</strong></td>\n<td>Date when the points should expire</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to attach to transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","loyaltycards","adjust","debit"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"5abd0ea3-ac75-406a-94b1-4d8aaf6a3a61","name":"Adjustment - Manual Debit","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"loyalty_card\": {\n        \"amount\": 20,\n        \"customer_id\": \"customer_e5762e7fd464c15260\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/loyaltycards/adjust/debit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"88c6834d3392663cacb598ca2c0fd8e0\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"649e791d-2776-49d1-8f41-49d0fb360a76"},{"key":"X-Runtime","value":"0.102850"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"563"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"loyalty_card\": {\n            \"customer_name\": null,\n            \"customer_email\": null,\n            \"customer_id\": \"customer_e5762e7fd464c15260\",\n            \"card_number\": \"20972405\",\n            \"balance\": 40,\n            \"card_id\": \"card_11ad50cc40fd31e7d0\",\n            \"last_transaction\": \"MANUAL_DEBIT\",\n            \"created_at\": \"2024-05-09T14:38:20.000Z\",\n            \"transaction\": {\n                \"transaction_id\": \"transaction_d95fd4629a0a274cf3\",\n                \"transaction_amount\": 20,\n                \"transaction_type\": \"MANUAL_DEBIT\",\n                \"transaction_date\": \"2024-07-31T15:25:36.000Z\",\n                \"client_order_id\": null,\n                \"transaction_description\": null\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Point updated successfully!\",\n    \"errors\": []\n}"}],"_postman_id":"c0e391d2-9219-42f3-b205-54af7e70270d"}],"id":"4a913a4b-6b15-4514-9ed0-131eac81ba32","_postman_id":"4a913a4b-6b15-4514-9ed0-131eac81ba32","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}}},{"name":"Coupons","item":[{"name":"Get Coupons","id":"cf3ec2ef-b91c-4757-864f-9907cdae873c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/coupons?page_no=1","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_no</td>\n<td>Yes</td>\n<td>Page no &gt; 0</td>\n</tr>\n<tr>\n<td>coupon_id</td>\n<td><strong>No</strong></td>\n<td>Coupon id generated by 99minds</td>\n</tr>\n<tr>\n<td>coupon_rule_id</td>\n<td><strong>No</strong></td>\n<td>Coupon rule id generated by 99minds</td>\n</tr>\n<tr>\n<td>coupon_codes</td>\n<td><strong>No</strong></td>\n<td>Comma separated list of coupon codes. Max 50.</td>\n</tr>\n<tr>\n<td>customer_id</td>\n<td><strong>No</strong></td>\n<td>99minds generated customer id</td>\n</tr>\n<tr>\n<td>client_customer_id</td>\n<td><strong>No</strong></td>\n<td>Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.</td>\n</tr>\n<tr>\n<td>client_customer_platform</td>\n<td><strong>No</strong></td>\n<td>Any one of the supported platforms. <code>client_customer_platform</code> should be passed in along with <code>client_customer_id</code> for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>currency_code</td>\n<td>No</td>\n<td>3-letter ISO 4217 currency code. e.g, <code>USD, EUR</code></td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td><code>asc</code> or <code>desc</code>. Default <code>desc</code></td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of coupon</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of coupon</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","coupons"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"page_no","value":"1"}],"variable":[]}},"response":[{"id":"45b44b29-274b-424c-bdac-a6d1c12dac35","name":"Get Coupons","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.giftcard.99minds.io/api/v1/coupons?page_no=1","host":["https://api.giftcard.99minds.io"],"path":["api","v1","coupons"],"query":[{"key":"page_no","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"236a1a47e4832b9ffdd6444d6bc3121a\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"48122cec-b109-46a9-b6b3-bcd2f11c94b0","enabled":true},{"key":"X-Runtime","value":"0.224140","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"total_pages\": 10,\n        \"current_page\": 1,\n        \"next_page\": 2,\n        \"prev_page\": null,\n        \"coupons\": [\n            {\n                \"title\": \"16% OFF\",\n                \"rule_reference_no\": \"rule_cd3d7f62b4d6d0ae16\",\n                \"code\": \"LMJK6PFVRG4CAQ\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_09deb71d1de137c97f\",\n                \"created_at\": \"2027-10-21T00:00:00.000Z\"\n            },\n            {\n                \"title\": \"16% OFF\",\n                \"rule_reference_no\": \"rule_cd3d7f62b4d6d0ae16\",\n                \"code\": \"ASI1K2J5MBAD\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_b433cfd82f10bc7fef\",\n                \"created_at\": \"2027-09-21T00:00:00.000Z\"\n            },\n            {\n                \"title\": \"Referral Rule\",\n                \"rule_reference_no\": \"rule_09b877d1f99578197f\",\n                \"code\": \"REFYVIOT0WZR\",\n                \"active\": true,\n                \"redemption_count\": 1,\n                \"reference_no\": \"coupon_a90859a6583605b4ba\",\n                \"created_at\": \"2021-12-16T08:10:24.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST10\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_05dea147aa55ffe262\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST11\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_27831b3afdb1199e43\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST12\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_cd9caa25b70a6d561a\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST13\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_8e36a28da7b0e23b65\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST14\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_3e9ec4c66e57e0ed89\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST15\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_e835b3b5327bcc9384\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST16\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_2f1098c52679c9d1b6\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST17\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_2fe8e34cc36fce264d\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST18\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_d598b04d3b7ff2597e\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST19\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_95f6b9e9d002bf9a49\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST20\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_d3c194230a4678ace1\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST21\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_936d92e21d00241bd2\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST22\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_503b78cc359fd90177\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST23\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_6b3732e93f866c51c7\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST24\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_e36bef9fc5b9d7301d\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST25\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_e62e804f01e82e24d5\",\n                \"created_at\": \"2021-12-03T12:53:01.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST1\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_c5f7c28c7d4857e0d3\",\n                \"created_at\": \"2021-12-03T12:53:00.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST2\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_e4781592151a893d23\",\n                \"created_at\": \"2021-12-03T12:53:00.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST3\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_e0fd4514e1ae7ca016\",\n                \"created_at\": \"2021-12-03T12:53:00.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST4\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_22742510303031953e\",\n                \"created_at\": \"2021-12-03T12:53:00.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST5\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_fd863a26467d692b1a\",\n                \"created_at\": \"2021-12-03T12:53:00.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"rule_reference_no\": \"rule_2a75b748a2ef5de98d\",\n                \"code\": \"TEST6\",\n                \"active\": true,\n                \"redemption_count\": 0,\n                \"reference_no\": \"coupon_95c15b8f2a5630d236\",\n                \"created_at\": \"2021-12-03T12:53:00.000Z\"\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"cf3ec2ef-b91c-4757-864f-9907cdae873c"},{"name":"Get Coupon Details","id":"90ea3f92-5020-4476-913b-dc8751669fae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/coupons/coupon_b9d019c3040e711125","description":"<p>Retrieve particular coupon by its <code>code</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","coupons","coupon_b9d019c3040e711125"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"25a947c8-27ed-4160-bcaf-f0f5f3e914cd","name":"Get Coupon Details","originalRequest":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/coupons/coupon_b9d019c3040e711125"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"b08772bfd1a41e46a98b0f83a89121ba\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"e89870c6-ea23-4e27-b4cf-6a312914bf7c","enabled":true},{"key":"X-Runtime","value":"0.064426","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"coupon\": {\n            \"active\": true,\n            \"coupon_code\": \"U1PUWFNL\",\n            \"coupon_value\": \"10.0\",\n            \"coupon_id\": \"coupon_b9d019c3040e711125\",\n            \"redemption_count\": 0,\n            \"expiration_date\": null,\n            \"imported_coupon_flag\": false,\n            \"allow_to_issue\": false,\n            \"last_transaction_type\": \"ISSUED\",\n            \"batch_id\": null\n        },\n        \"rule\": {\n            \"title\": \"Pinstripes $10 OFF\",\n            \"coupon_rule_id\": \"rule_b2ba4fd74e2dc6ef2b\",\n            \"coupon_type\": \"FIXED\",\n            \"value\": \"10.0\",\n            \"active\": true,\n            \"coupon_length\": 8,\n            \"disallowed_characters\": null,\n            \"prefix\": \"\",\n            \"suffix\": \"\",\n            \"end_date\": null,\n            \"start_date\": null,\n            \"coupon_expiration_period\": null,\n            \"product_ids\": null,\n            \"category_ids\": null,\n            \"min_subtotal\": null,\n            \"min_quantity\": null,\n            \"max_usage\": null,\n            \"max_usage_per_customer\": null,\n            \"created_at\": \"2021-11-22T13:38:29.000Z\"\n        },\n        \"customer\": {\n            \"name\": \"Mrudul\",\n            \"email\": \"mrudul@doboz.in\",\n            \"customer_id\": \"user_275ce281c264a2c471\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"90ea3f92-5020-4476-913b-dc8751669fae"},{"name":"Get Coupon Transactions","id":"d86f52ef-8b0c-43ef-a052-d9ac9572254c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/coupons/transactions?page_no=1","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_no</td>\n<td><strong>Yes</strong></td>\n<td>Page no &gt; 0</td>\n</tr>\n<tr>\n<td>coupon_id</td>\n<td><strong>No</strong></td>\n<td>Coupon id generated by 99minds</td>\n</tr>\n<tr>\n<td>coupon_codes</td>\n<td><strong>No</strong></td>\n<td>Comma separated list of coupon codes. Max 50.</td>\n</tr>\n<tr>\n<td>customer_id</td>\n<td><strong>No</strong></td>\n<td>99minds generated customer id</td>\n</tr>\n<tr>\n<td>client_customer_id</td>\n<td><strong>No</strong></td>\n<td>Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.</td>\n</tr>\n<tr>\n<td>client_customer_platform</td>\n<td><strong>No</strong></td>\n<td>Any one of the supported platforms. <code>client_customer_platform</code> should be passed in along with <code>client_customer_id</code> for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID linked to the transaction.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td><code>asc</code> or <code>desc</code>. Default <code>desc</code></td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of coupon transaction</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of coupon transaction</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","coupons","transactions"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"page_no","value":"1"}],"variable":[]}},"response":[{"id":"7bba007f-0799-490b-8d37-abe9b70c4094","name":"Get Coupon Transactions","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.giftcard.99minds.io/api/v1/coupon_transactions?page_no=1","host":["https://api.giftcard.99minds.io"],"path":["api","v1","coupon_transactions"],"query":[{"key":"page_no","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Etag","value":"W/\"d78cd904a0576c430807dfc892a700c8\"","enabled":true},{"key":"Ngrok-Agent-Ips","value":"106.215.5.116","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"X-Rack-Cors","value":"miss; no-origin","enabled":true},{"key":"X-Request-Id","value":"f94925cf-4c8c-4980-a494-75c7919a8936","enabled":true},{"key":"X-Runtime","value":"0.033790","enabled":true},{"key":"X-Xss-Protection","value":"1; mode=block","enabled":true},{"key":"Date","value":"Fri, 11 Feb 2022 12:40:48 GMT","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"total_pages\": 2,\n        \"current_page\": 1,\n        \"next_page\": 2,\n        \"prev_page\": null,\n        \"coupons\": [\n            {\n                \"title\": \"Christmas days $20 OFF\",\n                \"coupon_code\": \"TGVEWVGT\",\n                \"transaction_id\": \"coupon_transaction_4981143fd6732fd5bc\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-02-01T06:27:25.000Z\"\n            },\n            {\n                \"title\": \"Christmas days $20 OFF\",\n                \"coupon_code\": \"TGE0VTGT\",\n                \"transaction_id\": \"coupon_transaction_43ac7a686aab17fe11\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-02-01T06:27:25.000Z\"\n            },\n            {\n                \"title\": \"Christmas days $20 OFF\",\n                \"coupon_code\": \"TGJUYYGT\",\n                \"transaction_id\": \"coupon_transaction_b29f7987016cb29f01\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-01-31T14:40:21.000Z\"\n            },\n            {\n                \"title\": \"Christmas days $20 OFF\",\n                \"coupon_code\": \"TGJUYYGT\",\n                \"transaction_id\": \"coupon_transaction_d02dc05e1259187f7a\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-01-31T14:39:57.000Z\"\n            },\n            {\n                \"title\": \"Christmas days $20 OFF\",\n                \"coupon_code\": \"TGGBBVGT\",\n                \"transaction_id\": \"coupon_transaction_22cb0832da28ed03ca\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-01-31T14:37:15.000Z\"\n            },\n            {\n                \"title\": \"Christmas days $20 OFF\",\n                \"coupon_code\": \"TGGBBVGT\",\n                \"transaction_id\": \"coupon_transaction_573fe157d7b1c1a59e\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-01-31T14:36:50.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"coupon_code\": \"V1YR8AGK\",\n                \"transaction_id\": \"coupon_transaction_e2effdefeef025e171\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-01-31T11:07:08.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"coupon_code\": \"IKATIIN9\",\n                \"transaction_id\": \"coupon_transaction_9d5bf396a0d2a18ac3\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-01-31T11:07:08.000Z\"\n            },\n            {\n                \"title\": \"Christmas days $20 OFF\",\n                \"coupon_code\": \"TGSU2NGT\",\n                \"transaction_id\": \"coupon_transaction_4eb6b5b9bc1469e4ff\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-01-31T10:24:20.000Z\"\n            },\n            {\n                \"title\": \"Christmas days $20 OFF\",\n                \"coupon_code\": \"TGSH1KGT\",\n                \"transaction_id\": \"coupon_transaction_8c7001cad71c95aea5\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-01-31T10:24:20.000Z\"\n            },\n            {\n                \"title\": \"Christmas days $20 OFF\",\n                \"coupon_code\": \"TGB1RYGT\",\n                \"transaction_id\": \"coupon_transaction_9101c593d34c0cfcec\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-01-31T10:24:20.000Z\"\n            },\n            {\n                \"title\": \"Coupon 2 \",\n                \"coupon_code\": \"SSSNNZCD\",\n                \"transaction_id\": \"coupon_transaction_e4bf614c379102c769\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-01-31T10:05:11.000Z\"\n            },\n            {\n                \"title\": \"Coupon 2 \",\n                \"coupon_code\": \"SSSNNEDK\",\n                \"transaction_id\": \"coupon_transaction_cefb209a157f9b3b70\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-01-31T10:05:11.000Z\"\n            },\n            {\n                \"title\": \"Coupon 2 \",\n                \"coupon_code\": \"SSSNNKVS\",\n                \"transaction_id\": \"coupon_transaction_20db780f0875462cf1\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-01-31T10:02:01.000Z\"\n            },\n            {\n                \"title\": \"Coupon 2 \",\n                \"coupon_code\": \"SSSNNREI\",\n                \"transaction_id\": \"coupon_transaction_5302164891ecf3a660\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-01-31T10:02:00.000Z\"\n            },\n            {\n                \"title\": \"Coupon 2 \",\n                \"coupon_code\": \"SSSNNACM\",\n                \"transaction_id\": \"coupon_transaction_385c3e9f808ff42178\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-01-31T10:02:00.000Z\"\n            },\n            {\n                \"title\": \"Coupon 2 \",\n                \"coupon_code\": \"SSSNNADI\",\n                \"transaction_id\": \"coupon_transaction_4ed836748fe9864aca\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2022-01-31T10:02:00.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"coupon_code\": \"ENFYMRBR\",\n                \"transaction_id\": \"coupon_transaction_74f1bf1bd51f3f9a5a\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2021-12-05T09:47:10.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"coupon_code\": \"ENFYMRBR\",\n                \"transaction_id\": \"coupon_transaction_ab0b0850c30d1c4fca\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2021-12-05T09:47:07.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"coupon_code\": \"O4BZCHVA\",\n                \"transaction_id\": \"coupon_transaction_0a8a55f6956c058361\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2021-12-05T09:47:00.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"coupon_code\": \"O4BZCHVA\",\n                \"transaction_id\": \"coupon_transaction_d3b87cf3382dff2a3a\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2021-12-05T09:46:56.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"coupon_code\": \"FD3NEZY7\",\n                \"transaction_id\": \"coupon_transaction_8ec0388433eea59ef1\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2021-12-05T09:44:56.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"coupon_code\": \"FD3NEZY7\",\n                \"transaction_id\": \"coupon_transaction_b81ea2b5c639576433\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2021-12-05T09:44:53.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"coupon_code\": \"6OTAD4TZ\",\n                \"transaction_id\": \"coupon_transaction_9f7e935af61bab1ae8\",\n                \"transaction_type\": \"ISSUED\",\n                \"transaction_source\": null,\n                \"client_order_id\": \"order_c9b0f753ca03353950\",\n                \"created_at\": \"2021-12-04T09:41:43.000Z\"\n            },\n            {\n                \"title\": \"Pinstripes $10 OFF\",\n                \"coupon_code\": \"6OTAD4TZ\",\n                \"transaction_id\": \"coupon_transaction_b7140b29af44a98c88\",\n                \"transaction_type\": \"CREATED\",\n                \"transaction_source\": null,\n                \"client_order_id\": \"order_c9b0f753ca03353950\",\n                \"created_at\": \"2021-12-04T09:41:39.000Z\"\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"d86f52ef-8b0c-43ef-a052-d9ac9572254c"},{"name":"Create Coupons","id":"589f8542-4a1f-4b05-bcb1-aa5f6dc1aead","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"coupon\": {\n        \"coupon_rule_id\": \"rule_b6f9540446f7a943d0\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/coupons","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>coupon_rule_id</td>\n<td>Yes</td>\n<td>Coupon Rule <code>reference_no</code></td>\n</tr>\n<tr>\n<td>value</td>\n<td>No</td>\n<td>Coupon value. Required if the provided Coupon Rule is of type <code>DYNAMIC</code></td>\n</tr>\n<tr>\n<td>custom_code</td>\n<td>No</td>\n<td>Custom coupon code. If provided, 99minds will not generate the code.</td>\n</tr>\n<tr>\n<td>expiration_date</td>\n<td>No</td>\n<td>Date in <code>ISO8601</code> format specifying when to deliver the order. E.g 2023-04-14</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td>No</td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","coupons"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"f61ea3b9-fcc9-47b5-b9dd-760e1e4f3f77","name":"Create Coupons - Random Code","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"coupon\": {\n        \"coupon_rule_id\": \"rule_b6f9540446f7a943d0\"\n\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/coupons"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"23182edf1843046425bd1f75868db708\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"13ad605a-bea8-4852-85a8-fa24b7301820"},{"key":"X-Runtime","value":"2.688650"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"818"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"coupon\": {\n            \"active\": true,\n            \"coupon_code\": \"YZNPERTB\",\n            \"coupon_value\": \"10.0\",\n            \"currency_code\": \"USD\",\n            \"coupon_id\": \"coupon_3c380b471d8b818109\",\n            \"redemption_count\": 0,\n            \"expiration_date\": null,\n            \"imported_coupon_flag\": false,\n            \"allow_to_issue\": false,\n            \"last_transaction_type\": \"CREATED\",\n            \"batch_id\": null\n        },\n        \"coupon_rule\": {\n            \"title\": \"Demo 2\",\n            \"coupon_rule_id\": \"rule_b6f9540446f7a943d0\",\n            \"coupon_type\": \"FIXED\",\n            \"value\": \"10.0\",\n            \"currency_code\": \"USD\",\n            \"active\": true,\n            \"coupon_length\": 8,\n            \"disallowed_characters\": null,\n            \"prefix\": null,\n            \"suffix\": null,\n            \"end_date\": null,\n            \"start_date\": null,\n            \"coupon_expiration_period\": -1,\n            \"product_ids\": null,\n            \"category_ids\": null,\n            \"min_subtotal\": null,\n            \"min_quantity\": null,\n            \"max_usage\": 1,\n            \"max_usage_per_customer\": null,\n            \"created_at\": \"2023-06-13T11:22:06.000Z\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Coupon created successfully\",\n    \"errors\": []\n}"},{"id":"5dde15fb-5258-4ae3-98e0-76ea226ace95","name":"Create Coupon - Custom code","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"coupon\": {\n        \"coupon_rule_id\": \"rule_b6f9540446f7a943d0\",\n        \"custom_code\": \"10002000\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/coupons"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"4b264f877ed7c67ccec112ce50c85394\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"0ff02e11-fb57-46fa-9242-3585ffe4ae1d"},{"key":"X-Runtime","value":"1.758053"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"818"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"coupon\": {\n            \"active\": true,\n            \"coupon_code\": \"10002000\",\n            \"coupon_value\": \"10.0\",\n            \"currency_code\": \"USD\",\n            \"coupon_id\": \"coupon_e37b4f63da27fdecde\",\n            \"redemption_count\": 0,\n            \"expiration_date\": null,\n            \"imported_coupon_flag\": false,\n            \"allow_to_issue\": false,\n            \"last_transaction_type\": \"CREATED\",\n            \"batch_id\": null\n        },\n        \"coupon_rule\": {\n            \"title\": \"Demo 2\",\n            \"coupon_rule_id\": \"rule_b6f9540446f7a943d0\",\n            \"coupon_type\": \"FIXED\",\n            \"value\": \"10.0\",\n            \"currency_code\": \"USD\",\n            \"active\": true,\n            \"coupon_length\": 8,\n            \"disallowed_characters\": null,\n            \"prefix\": null,\n            \"suffix\": null,\n            \"end_date\": null,\n            \"start_date\": null,\n            \"coupon_expiration_period\": -1,\n            \"product_ids\": null,\n            \"category_ids\": null,\n            \"min_subtotal\": null,\n            \"min_quantity\": null,\n            \"max_usage\": 1,\n            \"max_usage_per_customer\": null,\n            \"created_at\": \"2023-06-13T11:22:06.000Z\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Coupon created successfully\",\n    \"errors\": []\n}"}],"_postman_id":"589f8542-4a1f-4b05-bcb1-aa5f6dc1aead"},{"name":"Update Coupon","id":"9cf48e3a-00b8-4580-865b-afdfb96402eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"coupon\": {\n        \"active\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/coupons/coupon_7cda7f94cb8464a828","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>active</td>\n<td>Yes</td>\n<td>Activate or Deactivate the coupon</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td><strong>No</strong></td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","coupons","coupon_7cda7f94cb8464a828"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"82bf10ea-8fe5-4c68-82f8-e299e4e5ad46","name":"Update Coupon","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"coupon\": {\n        \"active\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/coupons/coupon_7cda7f94cb8464a828"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"2a7ca18e999cdf82af58e4262dbb127d\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"4cc232bc-d347-4815-ad88-e16c39d23699","enabled":true},{"key":"X-Runtime","value":"4.765819","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"coupon\": {\n            \"title\": \"Coupon1\",\n            \"rule_reference_no\": \"rule_232392e29b7aa341f6\",\n            \"coupon_code\": \"ITMWMLNZSW\",\n            \"active\": false,\n            \"redemption_count\": 0,\n            \"coupon_id\": \"coupon_7cda7f94cb8464a828\",\n            \"created_at\": \"2021-12-23T10:49:41.000Z\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Coupon updated successfully.\",\n    \"errors\": []\n}"}],"_postman_id":"9cf48e3a-00b8-4580-865b-afdfb96402eb"},{"name":"Issue Coupon","id":"6a976c96-e541-4714-a778-988e71490805","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"coupon\": {\n        \"coupon_rule_id\": \"rule_b6f9540446f7a943d0\",\n        \"customer_id\": \"customer_0e4907e736ecdb88f0\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/coupons/issue","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>coupon_rule_id</td>\n<td>Yes</td>\n<td>Coupon Rule <code>reference_no</code></td>\n</tr>\n<tr>\n<td>Any one of:  <br />customer_id  <br />customer_email  <br />client_customer_id &amp; client_customer_platform  <br />customer_email</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_email</code>: Customer's email where gift cards is to be issued.  <br /><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>customer_email</code>: Customer's email.  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>value</td>\n<td>No</td>\n<td>Coupon value. Required if the provided Coupon Rule is of type <code>DYNAMIC</code></td>\n</tr>\n<tr>\n<td>custom_code</td>\n<td>No</td>\n<td>Custom coupon code. If provided, 99minds will not generate the code.</td>\n</tr>\n<tr>\n<td>expiration_date</td>\n<td>No</td>\n<td>Date in <code>ISO8601</code> format specifying when to deliver the order. E.g 2023-04-14</td>\n</tr>\n<tr>\n<td>note</td>\n<td><strong>No</strong></td>\n<td>Custom note to link to this transaction</td>\n</tr>\n<tr>\n<td>transaction_description</td>\n<td><strong>No</strong></td>\n<td>Description for the specific transaction This is same as <code>customer_note</code>.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td>No</td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","coupons","issue"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"84a76154-cb83-40a8-b28a-b6035e751197","name":"Issue Coupon","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"coupon\": {\n        \"coupon_rule_id\": \"rule_232392e29b7aa341f6\",\n        \"customer_id\": \"user_2213f13d718a06f2b5\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/coupons/issue"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"a5f0b43b55d79b4cddb33822721cc5a1\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"29957176-4eed-483a-b4c4-52d0fb973ca3","enabled":true},{"key":"X-Runtime","value":"4.747548","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"coupon\": {\n            \"coupon_code\": \"K9T7HUNNNU\",\n            \"active\": true,\n            \"redemption_count\": 0,\n            \"coupon_id\": \"coupon_7fe1e151a89a1d5801\",\n            \"created_at\": \"2021-12-23T11:04:36.000Z\",\n            \"transaction\": {\n                \"transaction_id\": \"coupon_transaction_8ba0c8524758016032\",\n                \"transaction_type\": \"ISSUED\",\n                \"client_order_id\": null\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Coupon issued\",\n    \"errors\": []\n}"}],"_postman_id":"6a976c96-e541-4714-a778-988e71490805"},{"name":"Verify Coupon","id":"0e625362-12a2-4142-b35e-5be58cc331a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"coupon\":{\n        \"code\": \"XTZBLIUW\",\n        \"client_order_id\": \"0001\",\n        \"subtotal\": \"10.00\",\n        \"quantity\": \"1\",\n        \"source\": \"API\",\n        \"customer_email\": \"test@domain..in\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/coupons/verify","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>Yes</td>\n<td>Coupon  <br /><code>code</code></td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td>No</td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>subtotal</td>\n<td>No</td>\n<td>External Order subtotal</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>No</td>\n<td>External Order quantity</td>\n</tr>\n<tr>\n<td>source</td>\n<td>No</td>\n<td>A Platform for which coupon redeeming like API, BIGCOMMERCE, SHOPIFY, WOOCOMMERCE, etc. Default <code>API</code></td>\n</tr>\n<tr>\n<td>distributor_user_id</td>\n<td>No</td>\n<td>Distributor User  <br /><code>id</code></td>\n</tr>\n<tr>\n<td>customer_email</td>\n<td>No</td>\n<td>Distributor User  <br /><code>email</code> of a customer to whom coupon is assigned.</td>\n</tr>\n<tr>\n<td>Any one of:  <br />store_ref  <br />client_store_id</td>\n<td>No</td>\n<td>store_ref: Unique Store ID generated by 99minds.  <br />client_store_id: Unique Store ID provided by merchant.  <br />This is used to link transactions/resources to a particular store.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","coupons","verify"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"0ac2050b-6dc0-4fad-a0a7-389a834be911","name":"Verify Coupon","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"redeem_coupon\":{\n        \"code\": \"K9T7HUNNNU\",\n        \"client_order_id\": \"0001\",\n        \"subtotal\": \"10.00\",\n        \"quantity\": \"1\",\n        \"source\": \"API\",\n        \"distributor_user_id\": 1,\n        \"customer_email\": \"test@domain..in\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/coupons/verify"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"b02d632ffb542d2bfb2913d371c9d9b3\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"0b7c330c-1373-49ab-878f-160336d3e995","enabled":true},{"key":"X-Runtime","value":"0.208884","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"coupon\": {\n            \"customer_name\": \"John\",\n            \"customer_email\": \"gaurav@doboz.in\",\n            \"customer_id\": \"user_2213f13d718a06f2b5\",\n            \"coupon_code\": \"K9T7HUNNNU\",\n            \"coupon_id\": \"coupon_7fe1e151a89a1d5801\",\n            \"redemption_count\": 0,\n            \"expiration_date\": null,\n            \"created_at\": \"2021-12-23T11:04:36.000Z\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"0e625362-12a2-4142-b35e-5be58cc331a3"},{"name":"Redeem Coupon","id":"283b9f11-ada5-45b7-93ae-887a948bc54f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"coupon\":{\n        \"code\": \"XTZBLIUW\",\n        \"client_order_id\": \"0001\",\n        \"subtotal\": \"10.00\",\n        \"quantity\": \"1\",\n        \"source\": \"API\",\n        \"customer_email\": \"test@domain..in\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/coupons/redeem","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>Yes</td>\n<td>Coupon  <br /><code>code</code></td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td>No</td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n<tr>\n<td>subtotal</td>\n<td>No</td>\n<td>External Order subtotal</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>No</td>\n<td>External Order quantity</td>\n</tr>\n<tr>\n<td>source</td>\n<td>No</td>\n<td>A Platform for which coupon redeem like API, BIGCOMMERCE, SHOPIFY, WOOCOMMERCE, etc. Default <code>API</code></td>\n</tr>\n<tr>\n<td>Any one of:  <br />customer_id  <br />customer_email  <br />client_customer_id &amp; client_customer_platform  <br />customer_email</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_email</code>: Customer's email where gift cards is to be issued.  <br /><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>customer_email</code>: Customer's email.  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","coupons","redeem"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"74398a08-e031-4f31-8dea-8447c72e94b1","name":"Redeem Coupon","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"redeem_coupon\":{\n        \"code\": \"K9T7HUNNNU\",\n        \"client_order_id\": \"0001\",\n        \"subtotal\": \"10.00\",\n        \"quantity\": \"1\",\n        \"source\": \"API\",\n        \"distributor_user_id\": 1,\n        \"customer_email\": \"test@domain..in\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/coupons/redeem"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"a2a9fc839545563330c4d961ec5c04e9\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"c365baeb-800d-4d34-bf6a-9919f4d0d1a7","enabled":true},{"key":"X-Runtime","value":"0.067543","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"coupon\": {\n            \"customer_name\": \"John\",\n            \"customer_email\": \"gaurav@doboz.in\",\n            \"customer_id\": \"user_2213f13d718a06f2b5\",\n            \"coupon_code\": \"K9T7HUNNNU\",\n            \"coupon_id\": \"coupon_7fe1e151a89a1d5801\",\n            \"redemption_count\": 0,\n            \"expiration_date\": null,\n            \"created_at\": \"2021-12-23T11:04:36.000Z\",\n            \"transaction\": {\n                \"transaction_id\": \"coupon_transaction_6c20009a748d5e5441\",\n                \"transaction_date\": \"2021-12-23T11:14:06.000Z\",\n                \"client_order_id\": \"0001\"\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Coupon redeemed\",\n    \"errors\": []\n}"}],"_postman_id":"283b9f11-ada5-45b7-93ae-887a948bc54f"}],"id":"ebb7031f-af8f-464e-9a06-3c4c697121c3","_postman_id":"ebb7031f-af8f-464e-9a06-3c4c697121c3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}}},{"name":"Coupon Rules","item":[{"name":"Get Coupon Rules","id":"bfc4a0d6-6d9a-4c94-8b6e-f2b08899e9e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/coupon-rules?page_no=1","description":"<p>This endpoint retrieves a list of coupon rules.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_no</td>\n<td><strong>Yes</strong></td>\n<td>Page no &gt; 0.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td><code>asc</code> or <code>desc</code>. Default <code>desc</code></td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of gift card</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of gift card</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","coupon-rules"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"page_no","value":"1"}],"variable":[]}},"response":[{"id":"fb1a57b8-bf41-4ae0-8011-31adcd48eba4","name":"Get Coupon Rules","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.giftcard.99minds.io/api/v1/coupon-rules?page_no=1","host":["https://api.giftcard.99minds.io"],"path":["api","v1","coupon-rules"],"query":[{"key":"page_no","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"440a697810667426fe50dcc5f21c8587\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"91d30901-6190-46d8-b3a5-8cbf65cde50c"},{"key":"X-Runtime","value":"0.025201"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"4846"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"coupon_rules\": [\n            {\n                \"title\": \"Friend Referral\",\n                \"active\": true,\n                \"coupon_rule_type\": \"REFERRAL\",\n                \"coupon_type\": \"FIXED\",\n                \"value\": \"20.00\",\n                \"reference_no\": \"rule_586ace0610a833a5bd\",\n                \"coupon_length\": 12,\n                \"disallowed_characters\": null,\n                \"prefix\": \"REF\",\n                \"suffix\": \"\",\n                \"min_quantity\": null,\n                \"min_subtotal\": \"0.00\",\n                \"max_usage\": 1,\n                \"max_usage_per_customer\": 1,\n                \"max_shipping_price\": null,\n                \"limit_usage_to_per_item\": null,\n                \"character_set\": \"LETTERS_AND_NUMBERS\",\n                \"metadata\": {\n                    \"product_ids\": [],\n                    \"variant_ids\": [],\n                    \"category_ids\": [],\n                    \"customer_label\": \"\",\n                    \"product_ids_present\": false,\n                    \"variant_ids_present\": false,\n                    \"category_ids_present\": false,\n                    \"excluded_product_ids\": [],\n                    \"excluded_product_ids_present\": false\n                }\n            },\n            {\n                \"title\": \"Dynamic Fixed Codes\",\n                \"active\": true,\n                \"coupon_rule_type\": \"DYNAMIC\",\n                \"coupon_type\": \"FIXED\",\n                \"value\": \"0.00\",\n                \"reference_no\": \"rule_86fede53fcdc9ef96a\",\n                \"coupon_length\": 12,\n                \"disallowed_characters\": null,\n                \"prefix\": \"\",\n                \"suffix\": \"\",\n                \"min_quantity\": null,\n                \"min_subtotal\": \"0.00\",\n                \"max_usage\": 1,\n                \"max_usage_per_customer\": 1,\n                \"max_shipping_price\": null,\n                \"limit_usage_to_per_item\": null,\n                \"character_set\": \"LETTERS_AND_NUMBERS\",\n                \"metadata\": {\n                    \"customer_label\": \"\"\n                }\n            },\n            {\n                \"title\": \"Fre Shipping\",\n                \"active\": true,\n                \"coupon_rule_type\": \"STANDARD\",\n                \"coupon_type\": \"FREE_SHIPPING\",\n                \"value\": \"0.00\",\n                \"reference_no\": \"rule_abfd4027e8aafa9448\",\n                \"coupon_length\": 8,\n                \"disallowed_characters\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"min_quantity\": null,\n                \"min_subtotal\": \"0.00\",\n                \"max_usage\": 1,\n                \"max_usage_per_customer\": null,\n                \"max_shipping_price\": null,\n                \"limit_usage_to_per_item\": null,\n                \"character_set\": \"LETTERS_AND_NUMBERS\",\n                \"metadata\": null\n            },\n            {\n                \"title\": \"Demo 2\",\n                \"active\": true,\n                \"coupon_rule_type\": \"STANDARD\",\n                \"coupon_type\": \"FIXED\",\n                \"value\": \"10.00\",\n                \"reference_no\": \"rule_b6f9540446f7a943d0\",\n                \"coupon_length\": 8,\n                \"disallowed_characters\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"min_quantity\": null,\n                \"min_subtotal\": \"0.00\",\n                \"max_usage\": 1,\n                \"max_usage_per_customer\": null,\n                \"max_shipping_price\": null,\n                \"limit_usage_to_per_item\": null,\n                \"character_set\": \"LETTERS\",\n                \"metadata\": {\n                    \"product_ids\": [],\n                    \"variant_ids\": [],\n                    \"category_ids\": [\n                        {\n                            \"value\": [\n                                \"32424\"\n                            ],\n                            \"platform\": \"BIGCOMMERCE\",\n                            \"setting_id\": 1,\n                            \"store_name\": \"doboz\"\n                        },\n                        {\n                            \"value\": [\n                                \"123123\"\n                            ],\n                            \"platform\": \"VEND\",\n                            \"setting_id\": 3,\n                            \"domain_prefix\": \"99mindsinc\"\n                        }\n                    ],\n                    \"customer_label\": null,\n                    \"product_ids_present\": null,\n                    \"variant_ids_present\": null,\n                    \"category_ids_present\": true,\n                    \"excluded_product_ids\": [],\n                    \"excluded_product_ids_present\": null\n                }\n            },\n            {\n                \"title\": \"Andrea\",\n                \"active\": true,\n                \"coupon_rule_type\": \"STANDARD\",\n                \"coupon_type\": \"FIXED\",\n                \"value\": \"10.00\",\n                \"reference_no\": \"rule_e7af106836cd9b590e\",\n                \"coupon_length\": 8,\n                \"disallowed_characters\": null,\n                \"prefix\": \"PROMO\",\n                \"suffix\": null,\n                \"min_quantity\": 1,\n                \"min_subtotal\": \"97.00\",\n                \"max_usage\": 1,\n                \"max_usage_per_customer\": null,\n                \"max_shipping_price\": null,\n                \"limit_usage_to_per_item\": null,\n                \"character_set\": null,\n                \"metadata\": null\n            },\n            {\n                \"title\": \"Loyalty Point Claimed\",\n                \"active\": true,\n                \"coupon_rule_type\": \"STANDARD\",\n                \"coupon_type\": \"FIXED\",\n                \"value\": \"5.00\",\n                \"reference_no\": \"rule_5d39504132ce80919f\",\n                \"coupon_length\": 8,\n                \"disallowed_characters\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"min_quantity\": null,\n                \"min_subtotal\": \"0.00\",\n                \"max_usage\": 1,\n                \"max_usage_per_customer\": null,\n                \"max_shipping_price\": null,\n                \"limit_usage_to_per_item\": null,\n                \"character_set\": \"LETTERS_AND_NUMBERS\",\n                \"metadata\": {}\n            },\n            {\n                \"title\": \"Summer Sale\",\n                \"active\": true,\n                \"coupon_rule_type\": \"STANDARD\",\n                \"coupon_type\": \"FIXED\",\n                \"value\": \"20.00\",\n                \"reference_no\": \"rule_574f5b02d6315cf437\",\n                \"coupon_length\": 8,\n                \"disallowed_characters\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"min_quantity\": 1,\n                \"min_subtotal\": \"0.00\",\n                \"max_usage\": 1,\n                \"max_usage_per_customer\": null,\n                \"max_shipping_price\": null,\n                \"limit_usage_to_per_item\": null,\n                \"character_set\": \"LETTERS_AND_NUMBERS\",\n                \"metadata\": {}\n            },\n            {\n                \"title\": \"Summer Exclusive Sale\",\n                \"active\": true,\n                \"coupon_rule_type\": \"STANDARD\",\n                \"coupon_type\": \"FIXED\",\n                \"value\": \"10.00\",\n                \"reference_no\": \"rule_df8a8ab7ab1b4b8d81\",\n                \"coupon_length\": 8,\n                \"disallowed_characters\": null,\n                \"prefix\": \"SS\",\n                \"suffix\": null,\n                \"min_quantity\": 1,\n                \"min_subtotal\": \"0.00\",\n                \"max_usage\": 1,\n                \"max_usage_per_customer\": null,\n                \"max_shipping_price\": null,\n                \"limit_usage_to_per_item\": null,\n                \"character_set\": \"LETTERS_AND_NUMBERS\",\n                \"metadata\": null\n            },\n            {\n                \"title\": \"Mother's Day Promotions\",\n                \"active\": true,\n                \"coupon_rule_type\": \"STANDARD\",\n                \"coupon_type\": \"PERCENTAGE\",\n                \"value\": \"10.00\",\n                \"reference_no\": \"rule_e3bb6471efb53d7803\",\n                \"coupon_length\": 8,\n                \"disallowed_characters\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"min_quantity\": 1,\n                \"min_subtotal\": \"50.00\",\n                \"max_usage\": 1,\n                \"max_usage_per_customer\": null,\n                \"max_shipping_price\": null,\n                \"limit_usage_to_per_item\": null,\n                \"character_set\": null,\n                \"metadata\": null\n            },\n            {\n                \"title\": \"Promotional Coupon\",\n                \"active\": true,\n                \"coupon_rule_type\": \"STANDARD\",\n                \"coupon_type\": \"FIXED\",\n                \"value\": \"30.00\",\n                \"reference_no\": \"rule_b83be9105b3a616d46\",\n                \"coupon_length\": 8,\n                \"disallowed_characters\": null,\n                \"prefix\": null,\n                \"suffix\": \"GD\",\n                \"min_quantity\": 1,\n                \"min_subtotal\": \"100.00\",\n                \"max_usage\": 10,\n                \"max_usage_per_customer\": 1,\n                \"max_shipping_price\": null,\n                \"limit_usage_to_per_item\": null,\n                \"character_set\": null,\n                \"metadata\": null\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"bfc4a0d6-6d9a-4c94-8b6e-f2b08899e9e0"},{"name":"Get Coupon Rule Detail","id":"8aeb0991-4d33-4f4b-8bf1-1c5b638d6531","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/coupon-rules/rule_586ace0610a833a5bd","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","coupon-rules","rule_586ace0610a833a5bd"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"9bc5b771-bd66-4d31-96cd-095f63d7f4d8","name":"Get Coupon Rule Detail","originalRequest":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/coupon-rules/rule_586ace0610a833a5bd"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"33758121f2f983b9444a3f985546e962\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"00599dc8-f146-4986-83fd-63ec2a64ab36"},{"key":"X-Runtime","value":"0.031050"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"713"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"coupon_rule\": {\n            \"title\": \"Friend Referral\",\n            \"active\": true,\n            \"coupon_rule_type\": \"REFERRAL\",\n            \"coupon_type\": \"FIXED\",\n            \"value\": \"20.00\",\n            \"reference_no\": \"rule_586ace0610a833a5bd\",\n            \"coupon_length\": 12,\n            \"disallowed_characters\": null,\n            \"prefix\": \"REF\",\n            \"suffix\": \"\",\n            \"min_quantity\": null,\n            \"min_subtotal\": \"0.00\",\n            \"max_usage\": 1,\n            \"max_usage_per_customer\": 1,\n            \"max_shipping_price\": null,\n            \"limit_usage_to_per_item\": null,\n            \"character_set\": \"LETTERS_AND_NUMBERS\",\n            \"metadata\": {\n                \"product_ids\": [],\n                \"variant_ids\": [],\n                \"category_ids\": [],\n                \"customer_label\": \"\",\n                \"product_ids_present\": false,\n                \"variant_ids_present\": false,\n                \"category_ids_present\": false,\n                \"excluded_product_ids\": [],\n                \"excluded_product_ids_present\": false\n            }\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"8aeb0991-4d33-4f4b-8bf1-1c5b638d6531"}],"id":"693bb409-7045-4bf7-a84e-75aa87b640f4","_postman_id":"693bb409-7045-4bf7-a84e-75aa87b640f4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}}},{"name":"Customers","item":[{"name":"Get Customers","id":"fed68dcc-94ea-4945-931b-1bfc3241dc81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.giftcard.99minds.io/api/v1/customers?page_no=1","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_no</td>\n<td><strong>Yes</strong></td>\n<td>Page no &gt; 0.</td>\n</tr>\n<tr>\n<td>customer_id</td>\n<td><strong>No</strong></td>\n<td>99minds generated customer id</td>\n</tr>\n<tr>\n<td>email</td>\n<td><strong>No</strong></td>\n<td>Customer's email address</td>\n</tr>\n<tr>\n<td>client_customer_id</td>\n<td><strong>No</strong></td>\n<td>Customer id provided by client when creating/updating customer.  <br />Do note that client_customer_id are platform specific.</td>\n</tr>\n<tr>\n<td>client_customer_platform</td>\n<td><strong>No</strong></td>\n<td>Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same id for a specific customer</td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td>asc or desc. Default desc</td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of customer</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of customer</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","customers"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"page_no","value":"1"}],"variable":[]}},"response":[{"id":"998028e4-ed19-4229-aa90-ca7ac341fd6a","name":"Get Customers","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.giftcard.99minds.io/api/v1/customers?page_no=1","host":["https://api.giftcard.99minds.io"],"path":["api","v1","customers"],"query":[{"key":"page_no","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"aacffecdd3f6bb5fb4423e739abbe153\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"81c82265-04bc-4a74-ae31-0caaaedfedeb"},{"key":"X-Runtime","value":"0.159210"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"28228"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"total_records\": 1332,\n        \"total_pages\": 14,\n        \"current_page\": 1,\n        \"next_page\": 2,\n        \"prev_page\": null,\n        \"version\": {\n            \"min\": 1304,\n            \"max\": 2577\n        },\n        \"customers\": [\n            {\n                \"customer_id\": \"customer_0e4907e736ecdb88f0\",\n                \"name\": null,\n                \"email\": \"asdsa@asd.co\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2024-09-05T12:54:58.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"asdsa@asd.co\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": {}\n            },\n            {\n                \"customer_id\": \"customer_252dd9b4ead889e38a\",\n                \"name\": null,\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": true,\n                \"created_at\": \"2024-08-26T12:01:49.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100733\",\n                        \"platforms\": \"API\"\n                    }\n                ],\n                \"metadata\": {\n                    \"tiktok_follow_reward_claimed\": true\n                }\n            },\n            {\n                \"customer_id\": \"customer_d8604d36ca282c72b9\",\n                \"name\": null,\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2024-08-26T11:54:41.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"10195\",\n                        \"platforms\": \"API\"\n                    }\n                ],\n                \"metadata\": {}\n            },\n            {\n                \"customer_id\": \"customer_89870b60bbb5a2d4b4\",\n                \"name\": \"Kumar Sanu\",\n                \"email\": null,\n                \"phone\": \"3213213221\",\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2024-07-02T10:48:01.000Z\",\n                \"emails\": [],\n                \"phones\": [\n                    {\n                        \"phone\": \"3213213221\"\n                    },\n                    {\n                        \"phone\": \"xxxx\"\n                    }\n                ],\n                \"client_ids\": [],\n                \"metadata\": {}\n            },\n            {\n                \"customer_id\": \"customer_48172eb8c9fdc47c37\",\n                \"name\": null,\n                \"email\": null,\n                \"phone\": \"19782231232\",\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2024-06-06T11:45:15.000Z\",\n                \"emails\": [],\n                \"phones\": [\n                    {\n                        \"phone\": \"19782231232\"\n                    }\n                ],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_658ba24e70cd1436f5\",\n                \"name\": null,\n                \"email\": null,\n                \"phone\": \"19000900000\",\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2024-05-11T08:44:17.000Z\",\n                \"emails\": [],\n                \"phones\": [\n                    {\n                        \"phone\": \"19000900000\"\n                    }\n                ],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_e5762e7fd464c15260\",\n                \"name\": null,\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2024-05-09T14:37:33.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"101095\",\n                        \"platforms\": \"API\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_849adbc39175bc3f74\",\n                \"name\": null,\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2024-05-09T14:37:22.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"12345\",\n                        \"platforms\": \"API\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_27c36c70b1afa23a96\",\n                \"name\": null,\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2024-05-09T14:32:15.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"101092\",\n                        \"platforms\": \"API\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_9c7dc1cbf193e24df9\",\n                \"name\": \"asd\",\n                \"email\": \"asdsa@asd.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2024-02-07T13:32:05.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"asdsa@asd.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_14a97741c555396ce3\",\n                \"name\": null,\n                \"email\": \"asd@asd.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2024-02-07T13:30:07.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"asd@asd.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_1aa2fcadb860e8e6be\",\n                \"name\": \"OkCool\",\n                \"email\": null,\n                \"phone\": \"+918989\",\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2024-02-01T09:23:59.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_2b0a35ed34ecd76cd1\",\n                \"name\": \"OkCool\",\n                \"email\": null,\n                \"phone\": \"+121321323\",\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2024-02-01T09:22:29.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_1c135053b40c51c7de\",\n                \"name\": null,\n                \"email\": null,\n                \"phone\": \"+9922123221\",\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2024-02-01T09:20:02.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_d7bfdf971d80a8dd65\",\n                \"name\": null,\n                \"email\": null,\n                \"phone\": \"+19782231232\",\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2024-02-01T09:17:39.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_bb240dc6e043bdecf3\",\n                \"name\": null,\n                \"email\": \"mrudul@99minds.co\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": true,\n                \"created_at\": \"2023-12-28T17:11:43.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"mrudul@99minds.co\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": {}\n            },\n            {\n                \"customer_id\": \"customer_7779361cc92dacf97f\",\n                \"name\": null,\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-10-07T08:35:30.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100007\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_31c93074bd0477ddfe\",\n                \"name\": null,\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-10-04T13:04:27.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100009\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_10b43ebb11139b768d\",\n                \"name\": \"Kuntal\",\n                \"email\": \"kuntal@99minds.io\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-09-20T07:02:15.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"kuntal@99minds.io\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_b83eef43866595e49d\",\n                \"name\": \"sadd\",\n                \"email\": \"asdsad1234@asd.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-09-20T06:32:33.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"asdsad@asd.com\"\n                    },\n                    {\n                        \"email\": \"asdsad1234@asd.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_f26f7a3f2232a7fce3\",\n                \"name\": \"\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-08-23T11:32:28.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100008\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_fdf247012c725b188a\",\n                \"name\": \"Mrudul 2\",\n                \"email\": \"mrudul@doboz.com\",\n                \"phone\": \"\",\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-08-22T18:30:36.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"mrudul@doboz.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_1e421d85353506acc2\",\n                \"name\": \"\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-07-31T17:19:17.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100005\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_4daec5fdcbc49487e7\",\n                \"name\": \"\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-07-28T13:32:46.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100004\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_f39c49944a3e7ae75c\",\n                \"name\": \"\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-07-26T13:48:35.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"1001\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_e702ced4664e52687b\",\n                \"name\": \"Brody Weimann\",\n                \"email\": \"durga@99minds.io\",\n                \"phone\": \"19175140765\",\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-07-25T10:01:14.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"weimann.brody@example.com\"\n                    },\n                    {\n                        \"email\": \"durga@99minds.io\"\n                    }\n                ],\n                \"phones\": [\n                    {\n                        \"phone\": \"19175140765\"\n                    }\n                ],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100002\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": {}\n            },\n            {\n                \"customer_id\": \"customer_e170ba2ca074de7141\",\n                \"name\": \" \",\n                \"email\": \"21schwartzm@gmaill.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-07-16T08:09:02.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"21schwartzm@gmaill.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_9895956f5a5d6649ec\",\n                \"name\": \" \",\n                \"email\": \"21schwartzm@gmail.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-07-16T08:09:02.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"21schwartzm@gmail.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_b8e529bc57681e285b\",\n                \"name\": \"Kayona Shirar\",\n                \"email\": \"13benek@gmail.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-07-16T08:09:00.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"13benek@gmail.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_3962c9992584617de4\",\n                \"name\": null,\n                \"email\": \"kalene.brennan@gmail.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-07-01T18:32:43.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"kalene.brennan@gmail.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_76333368bb33182617\",\n                \"name\": null,\n                \"email\": \"damaness352@gmail.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-07-01T18:32:41.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"damaness352@gmail.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_3c3d87cd2fe7aa2cc1\",\n                \"name\": \"Mrudul\",\n                \"email\": \"mrudul@example.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-06-22T14:26:24.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"mrudul@example.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"101327\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_972898f121dca8daf4\",\n                \"name\": \"Natu Natu\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-06-15T11:21:04.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"101092\",\n                        \"platforms\": \"BIGCOMMERCE\"\n                    }\n                ],\n                \"metadata\": {\n                    \"facebook_like_reward_claimed\": true,\n                    \"facebook_share_reward_claimed\": true\n                }\n            },\n            {\n                \"customer_id\": \"customer_19349536c75afa64cc\",\n                \"name\": null,\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-06-15T11:18:37.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"12345\",\n                        \"platforms\": \"BIGCOMMERCE\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_f1a171f3763bfcade2\",\n                \"name\": null,\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-06-02T15:16:08.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"101095\",\n                        \"platforms\": \"BIGCOMMERCE\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_e624c41040a2bedd20\",\n                \"name\": \"Macy Stan\",\n                \"email\": \"macy.stan@example.com\",\n                \"phone\": \"+19754861096\",\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2023-04-12T06:22:20.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"macy.stan@example.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_2bd2c8c832c6e39e6b\",\n                \"name\": \"Jamie Fox\",\n                \"email\": \"robel.emelia@example.net890\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-09-21T20:19:38.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"robel.emelia@example.net890\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"123xxxx4560\",\n                        \"platforms\": \"RETAIL_PRO9\"\n                    },\n                    {\n                        \"client_customer_id\": \"101308\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": {}\n            },\n            {\n                \"customer_id\": \"customer_a21b268370d456b277\",\n                \"name\": null,\n                \"email\": \"robel.emelia@example.net89\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-09-21T20:18:42.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"robel.emelia@example.net89\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"123xxxx456\",\n                        \"platforms\": \"RETAIL_PRO9\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_ce6389bdea28dff846\",\n                \"name\": null,\n                \"email\": \"robel.emelia@example.net3\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-09-21T19:53:23.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"robel.emelia@example.net3\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"123xxxx\",\n                        \"platforms\": \"RETAIL_PRO9\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_e33dd5ac0db3a634a8\",\n                \"name\": null,\n                \"email\": \"robel.emelia@example.net2\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-09-21T18:07:57.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"robel.emelia@example.net2\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_221abc18acc0d76aa6\",\n                \"name\": null,\n                \"email\": \"my1email@gmail.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-26T12:12:09.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"my1email@gmail.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"8100SND1T3FWR84FKH7FYF1EPM\",\n                        \"platforms\": \"SQUAREUP\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_b62971c22b10792a37\",\n                \"name\": null,\n                \"email\": \"mark@gmail.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-22T12:51:02.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"mark@gmail.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"ADNK1YSKXGTGQDWMWBG5BA3YYR\",\n                        \"platforms\": \"SQUAREUP\"\n                    },\n                    {\n                        \"client_customer_id\": \"101228\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_8e4f4a9e805be60c69\",\n                \"name\": \"Imelda Crona\",\n                \"email\": \"crona_imelda@example.net\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T10:12:08.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"crona_imelda@example.net\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100321\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_4d383bf56329aadf6d\",\n                \"name\": \"Elnora Langosh\",\n                \"email\": \"langosh.elnora@example.net\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T10:10:41.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"langosh.elnora@example.net\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100452\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_fa181303082bae4f3b\",\n                \"name\": \"Keshawn Powlowski\",\n                \"email\": \"powlowski_keshawn@example.net\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T10:09:02.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"powlowski_keshawn@example.net\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100685\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_574ef42b252306da3a\",\n                \"name\": \"Martina Cummerata\",\n                \"email\": \"martina_cummerata@example.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T10:08:37.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"martina_cummerata@example.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100261\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_5bcf02f2be8c37e3d8\",\n                \"name\": \"Jonathon Cole\",\n                \"email\": \"cole.jonathon@example.org\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T10:08:33.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"cole.jonathon@example.org\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100733\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_0e4b98aa42d1cb0533\",\n                \"name\": \"Aaron Lubowitz\",\n                \"email\": \"lubowitz_aaron@example.org\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T10:07:36.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"lubowitz_aaron@example.org\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100953\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_8e999ea46ad45cdc11\",\n                \"name\": \"Filiberto Toy\",\n                \"email\": \"toy_filiberto@example.org\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T10:06:56.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"toy_filiberto@example.org\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100422\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_0ee0c802f0ba6c1642\",\n                \"name\": \"Davion Renner\",\n                \"email\": \"renner.davion@example.org\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T10:06:14.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"renner.davion@example.org\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100852\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_c11e6df0f605fe6a08\",\n                \"name\": \"Marcos Kemmer\",\n                \"email\": \"kemmer.marcos@example.org\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T10:03:38.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"kemmer.marcos@example.org\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100890\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_96f40051e6f05acab3\",\n                \"name\": \"Maximo Feil\",\n                \"email\": \"maximo_feil@example.org\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T10:02:49.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"maximo_feil@example.org\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100390\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_10d76d1bb58a10c484\",\n                \"name\": \"Marta Kertzmann\",\n                \"email\": \"kertzmann_marta@example.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T10:02:34.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"kertzmann_marta@example.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100608\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_b6d235203132857792\",\n                \"name\": \"Lilyan Kutch\",\n                \"email\": \"kutch.lilyan@example.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T10:01:51.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"kutch.lilyan@example.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100950\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_43561f8a017f15a75c\",\n                \"name\": \"Golden Barton\",\n                \"email\": \"barton.golden@example.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T10:00:33.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"barton.golden@example.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100282\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_54841183a5aef107d5\",\n                \"name\": \"Delores Ryan\",\n                \"email\": \"ryan.delores@example.net\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T10:00:32.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"ryan.delores@example.net\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100017\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_6e4c1bd50bf851f39b\",\n                \"name\": \"Gussie Cruickshank\",\n                \"email\": \"cruickshank.gussie@example.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T10:00:01.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"cruickshank.gussie@example.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100779\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_2b7fec0f2f80599cfa\",\n                \"name\": \"Daija Walsh\",\n                \"email\": \"daija_walsh@example.net\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T09:58:57.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"daija_walsh@example.net\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100256\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_5e437e6ab8e50b2944\",\n                \"name\": \"Gerhard Shanahan\",\n                \"email\": \"gerhard_shanahan@example.net\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T09:58:56.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"gerhard_shanahan@example.net\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100434\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_47ce53bd77d740e675\",\n                \"name\": \"Stacy Runte\",\n                \"email\": \"stacy_runte@example.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T09:57:57.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"stacy_runte@example.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100646\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_d2aa89538fcbfbfc3b\",\n                \"name\": \"Bart Ferry\",\n                \"email\": \"bart_ferry@example.net\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T09:57:15.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"bart_ferry@example.net\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100446\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_4cff077ab6a42ab2a8\",\n                \"name\": \"Raymond & Hammes\",\n                \"email\": \"hammes_raymond@example.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T09:57:08.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"hammes_raymond@example.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100767\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_8592b199c9513895b6\",\n                \"name\": \"Clotilde Ernser\",\n                \"email\": \"clotilde_ernser@example.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-20T09:56:25.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"clotilde_ernser@example.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"100668\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_4c87cdf00d34c6b9fc\",\n                \"name\": \"harshal\",\n                \"email\": \"yharshal255@gmail.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-16T12:54:17.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"yharshal255@gmail.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"101227\",\n                        \"platforms\": \"HEARTLAND_RETAIL\"\n                    },\n                    {\n                        \"client_customer_id\": \"7K2076DPBV6ASE9TF7G7KFVZ8W\",\n                        \"platforms\": \"SQUAREUP\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_7d6d877d5a2566e7d7\",\n                \"name\": null,\n                \"email\": \"merry@gmail.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-12T17:24:38.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"merry@gmail.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"VWTC5JFMMWS696BZ6J4Q36G2CR\",\n                        \"platforms\": \"SQUAREUP\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_b4924a8a07cc2935ac\",\n                \"name\": null,\n                \"email\": \"milli@gmail.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-05T09:49:58.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"milli@gmail.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"TETM1KEYF0RE14HD3FT0DMEF3R\",\n                        \"platforms\": \"SQUAREUP\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_bb3a90c13d849b8e1a\",\n                \"name\": \"XXXYXT\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-04T22:00:28.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_71b360771f7b4a38d1\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-04T21:40:12.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_ee57916daffff2509a\",\n                \"name\": \"John Wick\",\n                \"email\": \"jhon@example.com\",\n                \"phone\": \"+19754861096\",\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-04T17:05:07.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"jhon@example.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_04ff8e5e5b7ccad20b\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-02T04:34:48.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_2b2eacb6c5b8d81423\",\n                \"name\": \"Alax D\",\n                \"email\": \"alad@gmail.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-08-01T09:41:39.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"alad@gmail.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"98WHYGT0GMR31FXWMT2BCQMGCG\",\n                        \"platforms\": \"SQUAREUP\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_f052388055e468b229\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-30T22:31:11.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_4719478c69e2820813\",\n                \"name\": \"Alfia\",\n                \"email\": \"alfia@webster.co.in\",\n                \"phone\": \"8421902025\",\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-29T05:45:34.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"alfia@webster.co.in\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"0Z90QQRZ5GZDXD62EX29DACKZC\",\n                        \"platforms\": \"SQUAREUP\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_a06bc6c3c59e30bc63\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-29T02:01:40.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_8338f0872d677f8052\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-27T13:46:52.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_e6400cad9a67a71d57\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-26T08:35:14.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_f682922cf2c4c55c16\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-25T09:21:51.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_1ceab5219c49a83c8f\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-24T15:07:07.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_15381810845bbb1f8d\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-23T06:22:25.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_479d8755b39329d177\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-22T20:28:30.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_c629796bc6d209b5dc\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-22T17:39:59.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_7ccf9d9829eff83783\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-22T15:49:12.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_494e1f61e081deb92e\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-22T14:39:43.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_cc49388d60339cd9d5\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-22T13:58:59.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_136477ed6d959fd62e\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-22T13:36:03.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_3fa910f37867a15d2e\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-22T13:24:59.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_5f7f42e5a758e01608\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-22T13:20:17.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_082b76992dbf9572af\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-22T13:18:32.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_fec8619c3f0ca4a2ce\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-22T13:17:24.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_a02d0d2bbe52d3062a\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-22T13:16:53.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_2177d6069b5c2fa95b\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-22T13:16:18.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_344ddecbda1285fed7\",\n                \"name\": \"N/A\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-07-15T08:30:41.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_b46d6cdb9e4f6e1ecc\",\n                \"name\": null,\n                \"email\": \"john@ymail.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-06-29T13:55:40.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"john@ymail.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_56b9c6416d03d6d754\",\n                \"name\": \"Peter\",\n                \"email\": \"peterroot@gmail.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-06-25T07:36:46.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"peterroot@gmail.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"A0VDHJ1J216F139YZGZ509GKMG\",\n                        \"platforms\": \"SQUAREUP\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_f314884ba3f78f607a\",\n                \"name\": \"ellise\",\n                \"email\": \"ellise.m@gmail.in\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-06-25T07:28:38.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"ellise.m@gmail.in\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"6285NBX9F97XDFX8ZFKTS34KEC\",\n                        \"platforms\": \"SQUAREUP\"\n                    },\n                    {\n                        \"client_customer_id\": \"0WGPYH2G6CZ5V11GQ7BV0683Q0\",\n                        \"platforms\": \"SQUAREUP\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_646ccf7fddb89e5995\",\n                \"name\": null,\n                \"email\": \"tpad@lenovo.in\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-06-25T07:24:26.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"tpad@lenovo.in\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"9MX5FD54EWZW76E0ZG0SRJ8WRW\",\n                        \"platforms\": \"SQUAREUP\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_32ba59909c508cd4db\",\n                \"name\": \"ubuntu\",\n                \"email\": \"ubuntu@zmail.com\",\n                \"phone\": \"3213213221\",\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-06-24T05:16:37.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"ubuntu@zmail.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_b1e6e9f57f40c53f63\",\n                \"name\": \"Gaurav D\",\n                \"email\": \"max@gmail.com\",\n                \"phone\": \"3213213221\",\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-06-24T05:12:30.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"max@gmail.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_fdc8781b78b93eb1db\",\n                \"name\": \"\",\n                \"email\": null,\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-06-23T14:52:54.000Z\",\n                \"emails\": [],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"0242e39e-bfda-11eb-fc6f-2f6fc3951111\",\n                        \"platforms\": \"VEND\"\n                    }\n                ],\n                \"metadata\": null\n            },\n            {\n                \"customer_id\": \"customer_4fda3cf7df5f7a5842\",\n                \"name\": null,\n                \"email\": \"rbabar@gmail.com\",\n                \"phone\": null,\n                \"has_opted_in_loyalty\": false,\n                \"created_at\": \"2022-06-22T12:06:58.000Z\",\n                \"emails\": [\n                    {\n                        \"email\": \"rbabar@gmail.com\"\n                    }\n                ],\n                \"phones\": [],\n                \"client_ids\": [\n                    {\n                        \"client_customer_id\": \"E3JM9PQ8F14N93X3RJZZ5NR458\",\n                        \"platforms\": \"SQUAREUP\"\n                    }\n                ],\n                \"metadata\": null\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"fed68dcc-94ea-4945-931b-1bfc3241dc81"},{"name":"Get Customer Details","id":"a8179d3a-90e8-46a4-81b7-065d173e43fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer key_test_orkO6FLXfM6SDGJEaqGsum15NYYrMfBon14scK-DzzE","type":"text"}],"url":"https://api.giftcard.99minds.io/api/v1/customers/customer_cc6bf5f1380692bd2c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","customers","customer_cc6bf5f1380692bd2c"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"054e0b01-5f74-4b86-aec5-94a83175c341","name":"Get Customer Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer key_test_orkO6FLXfM6SDGJEaqGsum15NYYrMfBon14scK-DzzE","type":"text"}],"url":"https://api.giftcard.99minds.io/api/v1/customers/customer_e702ced4664e52687b"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"e80fc7774e67d1efab2d1049d0828c76\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"f6b20e89-b840-48f1-9e27-348e17980593"},{"key":"X-Runtime","value":"0.033985"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"497"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"customer\": {\n            \"customer_id\": \"customer_e702ced4664e52687b\",\n            \"name\": \"Brody Weimann\",\n            \"email\": \"durga@99minds.io\",\n            \"phone\": \"19175140765\",\n            \"has_opted_in_loyalty\": false,\n            \"created_at\": \"2023-07-25T10:01:14.000Z\",\n            \"emails\": [\n                {\n                    \"email\": \"weimann.brody@example.com\"\n                },\n                {\n                    \"email\": \"durga@99minds.io\"\n                }\n            ],\n            \"phones\": [\n                {\n                    \"phone\": \"19175140765\"\n                }\n            ],\n            \"client_ids\": [\n                {\n                    \"client_customer_id\": \"100002\",\n                    \"platforms\": \"HEARTLAND_RETAIL\"\n                }\n            ],\n            \"metadata\": {}\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"a8179d3a-90e8-46a4-81b7-065d173e43fa"},{"name":"Get Customer Metrics","id":"b03b067e-e43f-47d6-bdf9-63bdff2c602e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer key_test_orkO6FLXfM6SDGJEaqGsum15NYYrMfBon14scK-DzzE","type":"text"}],"url":"https://api.giftcard.99minds.io/api/v1/customers/customer_93896e14ee9545c22c/customer-metrics","description":"<p>Returns customer metrics like <code>total_spend</code> and <code>order_count</code>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>min</td>\n<td><strong>No</strong></td>\n<td>Minimum timestamp (in UNIX format) to filter metrics. Only records created on or after this timestamp will be included.</td>\n</tr>\n<tr>\n<td>max</td>\n<td><strong>No</strong></td>\n<td>Maximum timestamp (in UNIX format) to filter metrics. Only records created on or before this timestamp will be included.</td>\n</tr>\n<tr>\n<td>platform</td>\n<td><strong>No</strong></td>\n<td>Platform identifier (e.g., <code>SHOPIFY</code>, <code>BIGCOMMERCE</code>, <code>HEARTLAND_RETAIL</code>, etc.). If not specified, defaults to <code>ALL</code>, returning metrics aggregated across all supported platforms.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","customers","customer_93896e14ee9545c22c","customer-metrics"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"4bba5f58-19ba-486f-8fc0-860e3dddb8b7","name":"Get Customer Metrics","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer key_test_orkO6FLXfM6SDGJEaqGsum15NYYrMfBon14scK-DzzE","type":"text"}],"url":"https://api.giftcard.99minds.io/api/v1/customers/customer_93896e14ee9545c22c/customer-metrics"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"73d1db4c5026fc71571f1107e7e9c97e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"0d5f7fa4-a9a8-4ff1-be56-4484f056e09a"},{"key":"X-Runtime","value":"0.026443"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"161"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"customer_metrics\": {\n            \"customer_id\": \"customer_93896e14ee9545c22c\",\n            \"order_count\": 0,\n            \"total_spent\": 0\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"b03b067e-e43f-47d6-bdf9-63bdff2c602e"},{"name":"Add or Update Customer","id":"85a13888-636a-4a46-8096-e81cd1ff587b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer key_test_orkO6FLXfM6SDGJEaqGsum15NYYrMfBon14scK-DzzE","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"customer\": {\n        \"customer_id\": \"customer_93896e14ee9545c22c\",\n\t\t\"name\": \"Kullu 2\",\n        \"active\": true\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/customers","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_customer_id &amp; client_customer_platform</td>\n<td><strong>No</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>name</td>\n<td><strong>No</strong></td>\n<td>Customer's name</td>\n</tr>\n<tr>\n<td>email</td>\n<td><strong>No</strong></td>\n<td>Customer's email id</td>\n</tr>\n<tr>\n<td>phone</td>\n<td><strong>No</strong></td>\n<td>Customer's phone number</td>\n</tr>\n<tr>\n<td>metadata</td>\n<td><strong>No</strong></td>\n<td>A JSON object containing key-value pairs, where the values are merged with the existing metadata object values.</td>\n</tr>\n<tr>\n<td>opt_in_loyalty</td>\n<td><strong>No</strong></td>\n<td><code>Boolean</code> . Specify whether customers should be manually opted into the loyalty program. This is applicable when loyalty program opt in is enabled</td>\n</tr>\n<tr>\n<td>birthday_str</td>\n<td>No</td>\n<td>Customer's birthday. Accepts two formats:<br />• <code>MM/DD</code> format (e.g., \"04/15\") - uses fixed year 1600<br />• <code>YYYY-MM-DD</code> format (e.g., \"1995-04-15\") - preserves provided year</td>\n</tr>\n<tr>\n<td>anniversary_str</td>\n<td>No</td>\n<td>Customer's anniversary date. Accepts two formats:<br />• <code>MM/DD</code> format (e.g., \"06/20\") - uses fixed year 1600<br />• <code>YYYY-MM-DD</code> format (e.g., \"2010-06-20\") - preserves provided year</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","customers"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"91215b49-c008-4b16-a186-1e27debdce95","name":"Add or Update Customer","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer key_test_orkO6FLXfM6SDGJEaqGsum15NYYrMfBon14scK-DzzE","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"customer\": {\n\t\t\"name\": \"Developer\",\n\t\t\"email\": \"developer@gmail.com\",\n\t\t\"client_customer_id\": \"12345\",\n\t\t\"client_customer_platform\": \"API\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/customers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN","enabled":true},{"key":"X-XSS-Protection","value":"1; mode=block","enabled":true},{"key":"X-Content-Type-Options","value":"nosniff","enabled":true},{"key":"X-Download-Options","value":"noopen","enabled":true},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","enabled":true},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"ETag","value":"W/\"ab6443b368aadb9cc8613e1dfa5cd10f\"","enabled":true},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","enabled":true},{"key":"X-Request-Id","value":"4607f4e9-52c2-4387-bf95-b5e0a603fc63","enabled":true},{"key":"X-Runtime","value":"0.061951","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"X-Rack-CORS","value":"miss; no-origin","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"customer\": {\n            \"customer_id\": \"customer_53e75c554d03ced4d9\",\n            \"name\": \"Developer\",\n            \"email\": \"developer@gmail.com\",\n            \"phone\": null,\n            \"has_opted_in_loyalty\": false,\n            \"created_at\": \"2022-02-10T08:58:07.000Z\",\n            \"emails\": [\n                {\n                    \"email\": \"developer@gmail.com\"\n                }\n            ],\n            \"client_ids\": [\n                {\n                    \"client_customer_id\": \"12345\",\n                    \"platform\": \"API\"\n                }\n            ]\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Customer updated successfully\",\n    \"errors\": []\n}"}],"_postman_id":"85a13888-636a-4a46-8096-e81cd1ff587b"}],"id":"396b2488-6550-43b1-a75e-a4ff6d8ca800","_postman_id":"396b2488-6550-43b1-a75e-a4ff6d8ca800","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}}},{"name":"Workflows","item":[{"name":"Get Workflows","id":"83a65cc9-08b8-494a-9712-af393ae6661c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"idempotent_id\": \"ODXXXXX\",\n    \"trigger\": \"order_paid\",\n    \"email\": \"jhon@example.com\",\n    \"total_price\": 150\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/workflows?page_no=1","description":"<h4 id=\"required-parameters\">Required parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_no</td>\n<td>Yes</td>\n<td>Page no &gt; 0</td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td><code>asc</code> or <code>desc</code>. Default <code>desc</code></td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of coupon</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of coupon</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","workflows"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"page_no","value":"1"}],"variable":[]}},"response":[{"id":"7733d243-98dc-4dc1-ac2e-67c5fe14aa37","name":"Get Workflows","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"idempotent_id\": \"ODXXXXX\",\n    \"trigger\": \"order_paid\",\n    \"email\": \"jhon@example.com\",\n    \"total_price\": 150\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.giftcard.99minds.io/api/v1/workflows?page_no=1","host":["https://api.giftcard.99minds.io"],"path":["api","v1","workflows"],"query":[{"key":"page_no","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"27767f7031455aadcf9608534cebfeb1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"a9df9d59-c56e-4623-aa9f-508556b6d2b2"},{"key":"X-Runtime","value":"0.032941"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"2044"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"total_records\": 8,\n        \"total_pages\": 1,\n        \"current_page\": 1,\n        \"next_page\": null,\n        \"prev_page\": null,\n        \"version\": {\n            \"min\": 1,\n            \"max\": 8\n        },\n        \"workflows\": [\n            {\n                \"title\": \"Test\",\n                \"active\": false,\n                \"trigger\": \"order_paid\",\n                \"platforms\": null,\n                \"reference_no\": \"w_d76285f33f8c5334\",\n                \"start_date\": \"2023-11-17T20:30:00.000Z\",\n                \"end_date\": \"2024-01-31T13:30:00.000Z\",\n                \"created_at\": \"2023-09-29T10:14:46.000Z\"\n            },\n            {\n                \"title\": \"Issue Coupon Against Loyalty Point Claimed\",\n                \"active\": true,\n                \"trigger\": \"loyalty_points_claimed\",\n                \"platforms\": \"\",\n                \"reference_no\": \"w_e9f0a1c465be203d\",\n                \"start_date\": null,\n                \"end_date\": null,\n                \"created_at\": \"2022-06-21T05:27:48.000Z\"\n            },\n            {\n                \"title\": \"Vip Tier\",\n                \"active\": false,\n                \"trigger\": \"order_paid\",\n                \"platforms\": null,\n                \"reference_no\": \"w_dccd1718bee216fb\",\n                \"start_date\": \"2022-05-09T18:30:00.000Z\",\n                \"end_date\": null,\n                \"created_at\": \"2022-05-10T07:23:20.000Z\"\n            },\n            {\n                \"title\": \"Mother's Day Promotion\",\n                \"active\": false,\n                \"trigger\": \"order_paid\",\n                \"platforms\": \"VEND and BIGCOMMERCE\",\n                \"reference_no\": \"w_1b10d66112bd324e\",\n                \"start_date\": \"2022-04-29T04:00:00.000Z\",\n                \"end_date\": \"2022-05-31T04:00:00.000Z\",\n                \"created_at\": \"2022-04-29T16:50:45.000Z\"\n            },\n            {\n                \"title\": \"Promotional\",\n                \"active\": false,\n                \"trigger\": \"order_created\",\n                \"platforms\": \"BIGCOMMERCE\",\n                \"reference_no\": \"w_44c3f2ff91fdd590\",\n                \"start_date\": \"2022-04-28T04:00:00.000Z\",\n                \"end_date\": \"2022-05-05T04:00:00.000Z\",\n                \"created_at\": \"2022-04-28T19:22:51.000Z\"\n            },\n            {\n                \"title\": \"Referral\",\n                \"active\": false,\n                \"trigger\": \"successful_referral\",\n                \"platforms\": null,\n                \"reference_no\": \"w_5152affa86a1e449\",\n                \"start_date\": null,\n                \"end_date\": null,\n                \"created_at\": \"2022-03-24T07:19:45.000Z\"\n            },\n            {\n                \"title\": \"Signup Bonus\",\n                \"active\": false,\n                \"trigger\": \"account_created\",\n                \"platforms\": \"HEARTLAND_RETAIL\",\n                \"reference_no\": \"w_ae36150e5e9af5a8\",\n                \"start_date\": \"2022-03-14T18:30:00.000Z\",\n                \"end_date\": null,\n                \"created_at\": \"2022-03-15T11:26:23.000Z\"\n            },\n            {\n                \"title\": \" Issue Store Credit When Order Places\",\n                \"active\": false,\n                \"trigger\": \"order_paid\",\n                \"platforms\": null,\n                \"reference_no\": \"w_b50ea78a95e96b36\",\n                \"start_date\": \"2022-03-13T18:30:00.000Z\",\n                \"end_date\": \"2024-03-29T18:30:00.000Z\",\n                \"created_at\": \"2022-03-14T12:42:35.000Z\"\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"83a65cc9-08b8-494a-9712-af393ae6661c"},{"name":"Get Workflow Details","id":"a06bdc42-aa99-4ac7-a8fc-acb2f92d8300","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"idempotent_id\": \"ODXXXXX\",\n    \"trigger\": \"order_paid\",\n    \"email\": \"jhon@example.com\",\n    \"total_price\": 150\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/workflows/w_d76285f33f8c5334","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","workflows","w_d76285f33f8c5334"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"bf14baab-6488-47c0-b68f-66aae2d2db13","name":"Get Workflow Details","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"idempotent_id\": \"ODXXXXX\",\n    \"trigger\": \"order_paid\",\n    \"email\": \"jhon@example.com\",\n    \"total_price\": 150\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/workflows/w_d76285f33f8c5334"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"86e8b89802cba62947e0660d84fae645\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"7e6397de-43c8-4d60-93f5-fa13c14b8015"},{"key":"X-Runtime","value":"0.029753"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"339"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"workflow\": {\n            \"title\": \"Test\",\n            \"trigger\": \"order_paid\",\n            \"active\": false,\n            \"reference_no\": \"w_d76285f33f8c5334\",\n            \"platforms\": null,\n            \"start_date\": \"2023-11-17T20:30:00.000Z\",\n            \"end_date\": \"2024-01-31T13:30:00.000Z\",\n            \"created_at\": \"2023-09-29T10:14:46.000Z\",\n            \"updated_at\": \"2023-11-17T12:26:50.000Z\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"a06bdc42-aa99-4ac7-a8fc-acb2f92d8300"},{"name":"Update Workflow","id":"dc54a27d-b6b0-4286-b7d8-5fdadc9a07c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"workflow\": {\n        \"title\": \"$5 for every $100 spent\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/workflows/w_d76285f33f8c5334","description":"<h4 id=\"required-parameters\">Required parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title</td>\n<td><strong>No</strong></td>\n<td><code>Title for the workflow</code></td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><strong>No</strong></td>\n<td></td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><strong>No</strong></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","workflows","w_d76285f33f8c5334"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"efbb86ac-464e-4f9b-97f2-f7f565f0bfc6","name":"Update Workflow","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"workflow\": {\n        \"title\": \"$5 for every $100 spent\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/workflows/w_d76285f33f8c5334"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"a9286121cd34fe4a61194018d9fc8816\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"420fb57f-d993-463b-ae2d-acfdc2e61dba"},{"key":"X-Runtime","value":"0.080705"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"386"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"workflow\": {\n            \"title\": \"$5 for every $100 spent\",\n            \"trigger\": \"order_paid\",\n            \"active\": false,\n            \"reference_no\": \"w_d76285f33f8c5334\",\n            \"platforms\": null,\n            \"start_date\": \"2023-11-17T20:30:00.000Z\",\n            \"end_date\": \"2024-01-31T13:30:00.000Z\",\n            \"created_at\": \"2023-09-29T10:14:46.000Z\",\n            \"updated_at\": \"2024-02-25T03:45:01.000Z\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"Workflow updated successfully!\",\n    \"errors\": []\n}"}],"_postman_id":"dc54a27d-b6b0-4286-b7d8-5fdadc9a07c0"},{"name":"Execute Workflow","id":"2673ef36-3677-46fd-8657-9ae21eadeb02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"idempotent_id\": \"ODXXXXX\",\n    \"trigger\": \"order_paid\",\n    \"customer_email\": \"jhon@example.com\",\n    \"total_price\": 150\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/workflows/execute","description":"<p>This endpoint triggers and executes all active workflows that are eligible for the specified event or trigger.</p>\n<h4 id=\"required-parameters\">Required parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>idempotent_id</td>\n<td><strong>Yes</strong></td>\n<td>A unique external ID of the resource associated to this event. Must be unique per <code>trigger</code></td>\n</tr>\n<tr>\n<td>trigger</td>\n<td><strong>Yes</strong></td>\n<td><strong>Allowed Values</strong>:  <br />order_paid,  <br />order_refunded,  <br />account_created,  <br />loyalty_points_claimed,  <br />successful_referral,</td>\n</tr>\n<tr>\n<td><strong>Any one of:</strong>  <br />customer_email  <br />customer_id  <br />client_customer_id &amp; client_customer_platform</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer. Do note that <em>client_customer_id</em>'s are platform specific.</td>\n</tr>\n<tr>\n<td>source</td>\n<td><strong>No</strong></td>\n<td>A preconfigured source on 99minds system. Please reach out to <a href=\"https://mailto:support@99minds.io\">support99minds.io</a> for custom sources.</td>\n</tr>\n<tr>\n<td>sync</td>\n<td><strong>No</strong></td>\n<td><code>Boolean</code>. Default: <code>false</code>. Recommended: <code>false</code>.  <br />Whether the workflows should be executed synchronously</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"default-attributes-supported-by-99minds\">Default attributes supported by 99minds:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>subtotal_price</td>\n<td>Number</td>\n<td>The subtotal is price exclusive of shipping and tax</td>\n</tr>\n<tr>\n<td>subtotal_price_inc_tax</td>\n<td>Number</td>\n<td>The subtotal including tax and exclusive of shipping</td>\n</tr>\n<tr>\n<td>subtotal_price_ex_discount</td>\n<td>Number</td>\n<td>The subtotal excluding discounts, shipping and tax</td>\n</tr>\n<tr>\n<td>total_price</td>\n<td>Number</td>\n<td>The total amount paid by customer (inclusive of shipping and taxes)</td>\n</tr>\n<tr>\n<td>total_price_ex_tax</td>\n<td>Number</td>\n<td>The total price excluding tax (inclusive of shipping)</td>\n</tr>\n<tr>\n<td>product_ids</td>\n<td>List</td>\n<td>Product IDs attached to the order</td>\n</tr>\n<tr>\n<td>customer_tags</td>\n<td>List</td>\n<td>Customer Tags on Shopify</td>\n</tr>\n<tr>\n<td>total_quantity</td>\n<td>Number</td>\n<td>Total quantity in the order</td>\n</tr>\n<tr>\n<td>total_spent</td>\n<td>Number</td>\n<td>The amount that the customer spent in his lifetime</td>\n</tr>\n<tr>\n<td>orders_count</td>\n<td>Number</td>\n<td>The number of purchases the customer made</td>\n</tr>\n<tr>\n<td>refund_amount</td>\n<td>Number</td>\n<td>The net amount of the refund or exchange transaction. See <em><strong>notes</strong></em> below for details.</td>\n</tr>\n<tr>\n<td>refund_quantity</td>\n<td>Number</td>\n<td>The net quantity of items in the refund or exchange transaction. See <em><strong>notes</strong></em> below for details.</td>\n</tr>\n<tr>\n<td>store_credits_claimed</td>\n<td>Number</td>\n<td>Store credits claimed by customer in particular order/event</td>\n</tr>\n<tr>\n<td>loyalty_points_claimed</td>\n<td>Number</td>\n<td>Loyalty points claimed by customer in particular order/event</td>\n</tr>\n<tr>\n<td>is_giftcard_redeemed</td>\n<td>Boolean</td>\n<td>Indicates whether a gift card has been redeemed in the order.</td>\n</tr>\n<tr>\n<td>is_giftcard_purchased</td>\n<td>Boolean</td>\n<td>Indicates whether a gift card was purchased in the order.</td>\n</tr>\n<tr>\n<td>is_coupon_redeemed</td>\n<td>Boolean</td>\n<td>Indicates whether a coupon has been redeemed in the order.</td>\n</tr>\n<tr>\n<td>coupon_codes</td>\n<td>List</td>\n<td>List of coupon codes applied on the order.</td>\n</tr>\n<tr>\n<td>store_ref</td>\n<td>String</td>\n<td>Store ID provided by 99minds.</td>\n</tr>\n<tr>\n<td>client_store_id</td>\n<td>String</td>\n<td>External Store/Location ID linked to Store in 99minds.</td>\n</tr>\n<tr>\n<td>store_name</td>\n<td>String</td>\n<td>The name of the store where the event occurred.</td>\n</tr>\n<tr>\n<td>shipping_price</td>\n<td>Number</td>\n<td>The total shipping price paid on the order</td>\n</tr>\n<tr>\n<td>product_skus</td>\n<td>List</td>\n<td>The Product SKUs attached to the order</td>\n</tr>\n<tr>\n<td>category_ids</td>\n<td>List</td>\n<td>Category IDs of the products in the order</td>\n</tr>\n<tr>\n<td>collection_ids</td>\n<td>List</td>\n<td>Collection IDs of the products in the order</td>\n</tr>\n<tr>\n<td>vendors</td>\n<td>List</td>\n<td>List of all vendors attached to the order</td>\n</tr>\n<tr>\n<td>vendor_ids</td>\n<td>List</td>\n<td>List of all Vendor IDs attached to the order</td>\n</tr>\n<tr>\n<td>order_tags</td>\n<td>List</td>\n<td>Order Tags on Shopify</td>\n</tr>\n<tr>\n<td>product_tags</td>\n<td>List</td>\n<td>All Product Tags on the order line items</td>\n</tr>\n<tr>\n<td>shopify_order_source_name</td>\n<td>String</td>\n<td>Order source on Shopify</td>\n</tr>\n<tr>\n<td>store_credit_balance</td>\n<td>Number</td>\n<td>Customer's store credit balance</td>\n</tr>\n<tr>\n<td>loyalty_point_balance</td>\n<td>Number</td>\n<td>Customer's loyalty point balance</td>\n</tr>\n<tr>\n<td>customer_vip_tier</td>\n<td>String</td>\n<td>Customer's current VIP tier</td>\n</tr>\n<tr>\n<td>advocate_vip_tier</td>\n<td>String</td>\n<td>Advocate's VIP tier</td>\n</tr>\n<tr>\n<td>customer_memberships</td>\n<td>List</td>\n<td>Customer's current memberships</td>\n</tr>\n<tr>\n<td>is_in_vip_tier</td>\n<td>Boolean</td>\n<td>Indicates whether the customer is in any VIP tier</td>\n</tr>\n<tr>\n<td>total_referred_customers</td>\n<td>Number</td>\n<td>Total count of referrals made by this customer</td>\n</tr>\n<tr>\n<td>line_items</td>\n<td>Collection</td>\n<td>The collection of line items for the specific transaction. Applicable in both orders and refunds. See below for more details.</td>\n</tr>\n<tr>\n<td>app_event</td>\n<td>String</td>\n<td>Triggered when an app-related event occurs, such as APP_DOWNLOAD, APP_UNINSTALL, APP_OPEN, or APP_UPDATE.</td>\n</tr>\n<tr>\n<td>app_rating</td>\n<td>Number</td>\n<td>Represents the rating given by the user to the app, typically on a scale of 1 to 5.</td>\n</tr>\n<tr>\n<td>app_review_submitted</td>\n<td>Boolean</td>\n<td>Indicates whether the user has submitted a review or feedback for the app on Google or Apple Store.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"default-line-items-object\">Default Line Items Object:</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_id</td>\n<td>Product ID</td>\n<td>Unique identifier for the product</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name</td>\n<td>Name of the product</td>\n</tr>\n<tr>\n<td>sku</td>\n<td>SKU</td>\n<td>Stock Keeping Unit, a unique code for the product</td>\n</tr>\n<tr>\n<td>category</td>\n<td>Category</td>\n<td>Category under which the product is listed</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Price</td>\n<td>Price of the product</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Quantity</td>\n<td>Number of units purchased.  <br />Negative for refunds. Positive for exchanges.</td>\n</tr>\n<tr>\n<td>total</td>\n<td>Total</td>\n<td>Total amount (Price × Quantity).  <br />Negative for refunds. Positive for exchanges.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"notes\">Notes:</h4>\n<ol>\n<li><p>The <code>Execute Workflow</code> only respond with an API status code.</p>\n</li>\n<li><p>Additional attributes are provided on a per-integration basis wherever supported. Please reach out to support for more details.</p>\n</li>\n</ol>\n<h4 id=\"refund-amount\">Refund Amount</h4>\n<h5 id=\"description\">Description</h5>\n<p><code>refund_amount</code> represents the net financial impact of a refund or exchange transaction. It can be positive or negative, depending on the nature of the transaction.</p>\n<h5 id=\"behaviour\">Behaviour</h5>\n<ul>\n<li><p><strong>Positive Value</strong>: Indicates a net refund to the customer.</p>\n</li>\n<li><p><strong>Negative Value</strong>: Indicates a net payment from the customer (typically in an exchange where the new items cost more)</p>\n</li>\n</ul>\n<h5 id=\"examples\">Examples</h5>\n<ol>\n<li><p>Refund: Customer returns an item worth $50 - <code>refund_amount: 50</code></p>\n</li>\n<li><p>Exchange (customer pays more): Customer exchanges a $100 item for a $150 item - <code>refund_amount: -50</code></p>\n</li>\n</ol>\n<h4 id=\"refund-quantity\">Refund Quantity</h4>\n<h5 id=\"description-1\">Description</h5>\n<p><code>refund_quantity</code> represents the net change in the number of items resulting from a refund or exchange transaction. Like <code>refund_amount</code>, it can be positive or negative.</p>\n<h5 id=\"behavior\">Behavior</h5>\n<ul>\n<li><p><strong>Positive Value</strong>: Indicates a net decrease in items (typical for refunds).</p>\n</li>\n<li><p><strong>Negative Value</strong>: Indicates a net increase in items (possible in some exchanges).</p>\n</li>\n</ul>\n<h5 id=\"examples-1\">Examples</h5>\n<ol>\n<li><p>Refund: Customer returns 2 items - <code>refund_quantity: 2</code></p>\n</li>\n<li><p>Exchange (customer gets more items): Customer exchanges 1 large item for 3 smaller items - <code>refund_quantity: -2</code></p>\n</li>\n</ol>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","workflows","execute"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"2673ef36-3677-46fd-8657-9ae21eadeb02"},{"name":"Execute Workflow By ID","id":"fa25ee2e-18f1-4e9c-b980-e803fa27dc3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"idempotent_id\": \"123456\",\n    \"customer_email\": \"jhon@example.com\",\n    \"total_price\": 150,\n    \"async\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/workflows/execute/:workflow_id","description":"<p>This endpoint triggers and executes a single workflow.</p>\n<h4 id=\"required-parameters\">Required parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>idempotent_id</td>\n<td><strong>Yes</strong></td>\n<td>A unique external ID of the resource associated to this event. Must be unique per <code>trigger</code></td>\n</tr>\n<tr>\n<td><strong>Any one of:</strong>  <br />customer_email  <br />customer_id  <br />client_customer_id &amp; client_customer_platform</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer. Do note that <em>client_customer_id</em>'s are platform specific.</td>\n</tr>\n<tr>\n<td>source</td>\n<td><strong>No</strong></td>\n<td>A preconfigured source on 99minds system. Please reach out to <a href=\"https://mailto:support@99minds.io\">support99minds.io</a> for custom sources.</td>\n</tr>\n<tr>\n<td>sync</td>\n<td><strong>No</strong></td>\n<td><code>Boolean</code>. Default: <code>false</code>. Recommended: <code>false</code>.  <br />Whether the workflows should be executed synchronously</td>\n</tr>\n</tbody>\n</table>\n</div><p>Rest of the documentation is same as <code>Execute Workflow</code> Request</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","workflows","execute",":workflow_id"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[{"type":"any","value":"w_5572ee1739332603","key":"workflow_id"}]}},"response":[],"_postman_id":"fa25ee2e-18f1-4e9c-b980-e803fa27dc3a"},{"name":"Reverse Rewards","id":"7bec0bd7-e985-4cff-a73a-ff93e9ebf429","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"workflow\": {\n        \"client_order_id\": \"ORD12345\",\n        \"refund_id\": \"REF67890\",\n        \"refund_amount\": 150.00,\n        \"refund_quantity\": 2,\n        \"refunded_line_items\": [\n            {\n                \"product_id\": 1001,\n                \"name\": \"Blue T-Shirt\",\n                \"sku\": \"BTS-M\",\n                \"price\": 50.00,\n                \"quantity\": -1,\n                \"total\": -50.00,\n                \"category\": \"APPAREL\"\n            },\n            {\n                \"product_id\": 2001,\n                \"name\": \"Red Hoodie\",\n                \"sku\": \"RH-L\",\n                \"price\": 100.00,\n                \"quantity\": -1,\n                \"total\": -100.00,\n                \"category\": \"APPAREL\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/workflows/reverse","description":"<p>This endpoint performs a proportional reversal of rewards based on the refund amount relative to the original order amount. It is useful in scenarios such as partial refunds, where only a portion of the originally issued rewards should be revoked.</p>\n<p>The reversal behavior is as follows:</p>\n<ul>\n<li><p><strong>Coupons:</strong> Deactivated</p>\n</li>\n<li><p><strong>Gift Cards:</strong> Proportionally debited</p>\n</li>\n<li><p><strong>Loyalty Points:</strong> Proportionally debited</p>\n</li>\n<li><p><strong>Store Credit:</strong> Proportionally debited</p>\n</li>\n</ul>\n<p>Let me know if you'd like it rendered or included inline in some docs!<br />This ensures that rewards are reversed fairly in line with the refunded value, maintaining consistency across reward types.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_order_id</td>\n<td><strong>Yes</strong></td>\n<td>The original order ID against which rewards were issued. This identifies the order for which a refund or exchange is being processed.</td>\n</tr>\n<tr>\n<td>refund_id</td>\n<td><strong>Yes</strong></td>\n<td>A unique identifier for this specific refund transaction. Used to distinguish between multiple refunds for the same order.</td>\n</tr>\n<tr>\n<td>source</td>\n<td><strong>Yes</strong></td>\n<td>The transaction source, e.g., \"SHOPIFY\", \"RUNIT\", etc. Indicates the platform or channel where the refund is being processed.</td>\n</tr>\n<tr>\n<td>refund_amount</td>\n<td>No</td>\n<td>The net amount of the refund or exchange transaction. See <code>Execute Workflow</code> endpoint docs for details.</td>\n</tr>\n<tr>\n<td>refund_quantity</td>\n<td>No</td>\n<td>The net quantity of items in the refund or exchange transaction. See <code>Execute Workflow</code> endpoint docs for details.</td>\n</tr>\n<tr>\n<td>refunded_line_items (Array of Objects)</td>\n<td>No</td>\n<td>Details of each line item involved in the refund or exchange. Each object is an line item object as mentioned in <code>Execute Workflow</code> endpoint.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"notes\">Notes</h4>\n<ul>\n<li><p>For refunds, <code>quantity</code> and <code>total</code> in <code>refunded_line_items</code> are negative.</p>\n</li>\n<li><p>For exchanges, these values would be positive, representing the new items added to the order.</p>\n</li>\n<li><p>The <code>refund_amount</code> and <code>refund_quantity</code> does not necessarily need to match the sum of the respective values in <code>refunded_line_items</code>.</p>\n</li>\n<li><p>This structure allows for handling both simple refunds and complex scenarios involving partial refunds or exchanges within the same transaction.</p>\n</li>\n<li><p>Negative quantities and totals in <code>refunded_line_items</code> represent items being returned, while positive values represent items being added (in case of an exchange).</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","workflows","reverse"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"7bec0bd7-e985-4cff-a73a-ff93e9ebf429"},{"name":"Void Rewards","id":"619a7a6e-4250-4927-8c57-3cb2ed2a5e27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"workflow\": {\n        \"client_order_id\": \"ODX12123124\",\n        \"source\": \"SHOPIFY\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/workflows/void-rewards","description":"<p>This endpoint fully voids or reverses all rewards issued by a specific workflow. It ensures that no issued reward remains active. The reversal actions taken are:</p>\n<ul>\n<li><strong>Coupons:</strong> Deactivated  </li>\n<li><strong>Gift Cards:</strong> Blocked  </li>\n<li><strong>Loyalty Points:</strong> Debited  </li>\n<li><strong>Store Credit:</strong> Debited</li>\n</ul>\n<p>Use this to revoke all reward types associated with a workflow in a single operation.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_order_id</td>\n<td><strong>Yes</strong></td>\n<td>The original order ID against which rewards were issued by a workflow</td>\n</tr>\n<tr>\n<td>source</td>\n<td><strong>Yes</strong></td>\n<td>The transaction source, e.g., \"SHOPIFY\", \"RUNIT\", etc. Indicates the platform or channel where the original workflow was executed.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","workflows","void-rewards"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"619a7a6e-4250-4927-8c57-3cb2ed2a5e27"},{"name":"Get Events","id":"59627dc5-2193-4234-bf53-1052547c383a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/workflows/events?page_no=1&workflow_id=w_b50ea78a95e96b36ss","description":"<h4 id=\"required-parameters\">Required parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>idempotent_id</td>\n<td><strong>No</strong></td>\n<td>A unique external ID of the resource associated to this event. Must be unique per <code>trigger</code></td>\n</tr>\n<tr>\n<td>event_source</td>\n<td>No</td>\n<td>Source of event for which workflows were executed</td>\n</tr>\n<tr>\n<td><strong>Any one of:</strong>  <br />customer_email  <br />customer_id  <br />client_customer_id &amp; client_customer_platform</td>\n<td><strong>No</strong></td>\n<td><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer. Do note that <em>client_customer_id</em>'s are platform specific.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td>asc or desc. Default desc</td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of customer</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of customer</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","workflows","events"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"page_no","value":"1"},{"key":"workflow_id","value":"w_b50ea78a95e96b36ss"}],"variable":[]}},"response":[{"id":"bb8828d1-d068-4440-a498-7a799acbc19d","name":"Get Events","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.giftcard.99minds.io/api/v1/workflows/events?page_no=1","host":["https://api.giftcard.99minds.io"],"path":["api","v1","workflows","events"],"query":[{"key":"page_no","value":"1"},{"key":"workflow_id","value":"w_b50ea78a95e96b36","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"bfa5e1e2ab104c07b7fedf78fe692208\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"0dc79557-4d16-4825-8a4f-8ca7b45aaa5b"},{"key":"X-Runtime","value":"0.033612"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"2055"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"total_records\": 1,\n        \"total_pages\": 1,\n        \"current_page\": 1,\n        \"next_page\": null,\n        \"prev_page\": null,\n        \"version\": {\n            \"min\": 291,\n            \"max\": 291\n        },\n        \"events\": [\n            {\n                \"reference_no\": \"we_d6711cf97ded7069\",\n                \"event_source\": \"WEBPOS\",\n                \"trigger\": \"order_paid\",\n                \"created_at\": \"2023-06-22T14:29:03.000Z\",\n                \"updated_at\": \"2023-06-22T14:29:03.000Z\",\n                \"idempotent_id\": \"order_aa90539b2558af249d\",\n                \"workflow_params\": {\n                    \"email\": \"mrudul@example.com\",\n                    \"source\": \"WEBPOS\",\n                    \"created_at\": \"2023-06-22T14:28:56.000Z\",\n                    \"customer_id\": \"customer_3c3d87cd2fe7aa2cc1\",\n                    \"total_price\": 40,\n                    \"workflow_id\": 1,\n                    \"idempotent_id\": \"order_aa90539b2558af249d\",\n                    \"distributor_id\": 2,\n                    \"total_quantity\": 1,\n                    \"workflow_event_id\": 291,\n                    \"workflow_reference\": \"w_b50ea78a95e96b36\",\n                    \"workflow_event_reference\": \"we_d6711cf97ded7069\"\n                },\n                \"request_params\": {\n                    \"action\": \"sell\",\n                    \"format\": \"json\",\n                    \"giftcard\": {\n                        \"data\": [\n                            {\n                                \"amount\": \"40\",\n                                \"is_gift\": false,\n                                \"customer_name\": \"Mrudul\",\n                                \"delivery_mode\": \"DIGITAL\",\n                                \"customer_email\": \"mrudul@example.com\",\n                                \"giftcard_numbers\": []\n                            }\n                        ],\n                        \"store_ref\": \"store_8412d02623ce4c1a30\",\n                        \"order_note\": \"\",\n                        \"client_order_id\": \"\",\n                        \"giftcard_unit_id\": 1\n                    },\n                    \"controller\": \"app/webpos\"\n                },\n                \"customer\": {\n                    \"customer_id\": \"customer_3c3d87cd2fe7aa2cc1\",\n                    \"customer_name\": \"Mrudul\",\n                    \"customer_email\": \"mrudul@example.com\"\n                },\n                \"workflow_executions\": [\n                    {\n                        \"reference_no\": \"workflow_execution_1535cee839e6920161\",\n                        \"workflow\": {\n                            \"title\": \" Issue Store Credit When Order Places\",\n                            \"trigger\": \"order_paid\",\n                            \"platforms\": null,\n                            \"reference_no\": \"w_b50ea78a95e96b36\"\n                        },\n                        \"executed_actions\": [\n                            {\n                                \"action_type\": \"DELAY\",\n                                \"action_properties\": {\n                                    \"delay_type\": \"hours\",\n                                    \"delay_amount\": 1\n                                },\n                                \"action_response\": \"SUCCESS\",\n                                \"error_message\": null,\n                                \"reference_no\": \"workflow_result_1bfac958f55865f48c\",\n                                \"created_at\": \"2023-06-22T14:29:04.781Z\",\n                                \"updated_at\": \"2023-06-22T14:29:04.781Z\"\n                            },\n                            {\n                                \"action_type\": \"ISSUE_STORE_CREDIT\",\n                                \"action_properties\": {\n                                    \"reward\": {\n                                        \"fixed\": {\n                                            \"amount\": 10\n                                        },\n                                        \"operator\": \"fixed\"\n                                    },\n                                    \"is_expired\": false\n                                },\n                                \"action_response\": \"SUCCESS\",\n                                \"error_message\": null,\n                                \"reference_no\": \"workflow_result_cde86bf1ee5f258a96\",\n                                \"created_at\": \"2023-06-22T14:32:28.938Z\",\n                                \"updated_at\": \"2023-06-22T14:32:28.938Z\"\n                            }\n                        ]\n                    }\n                ]\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"59627dc5-2193-4234-bf53-1052547c383a"},{"name":"Get Events Details","id":"1aa934bc-74d5-42fc-b1c3-3abbadb8a95a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/workflows/events/we_d6711cf97ded7069","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","workflows","events","we_d6711cf97ded7069"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"d0dfb419-541b-4b24-8820-fe66d2f48ef4","name":"Get Event Details","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/workflows/events/we_d6711cf97ded7069"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"2d13e49fb062962ec977437a6548056d\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"46f6c206-a30e-4f02-a8fb-12a26f7b5202"},{"key":"X-Runtime","value":"0.026222"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"1931"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"workflow_event\": {\n            \"reference_no\": \"we_d6711cf97ded7069\",\n            \"event_source\": \"WEBPOS\",\n            \"trigger\": \"order_paid\",\n            \"created_at\": \"2023-06-22T14:29:03.000Z\",\n            \"updated_at\": \"2023-06-22T14:29:03.000Z\",\n            \"idempotent_id\": \"order_aa90539b2558af249d\",\n            \"workflow_params\": {\n                \"email\": \"mrudul@example.com\",\n                \"source\": \"WEBPOS\",\n                \"created_at\": \"2023-06-22T14:28:56.000Z\",\n                \"customer_id\": \"customer_3c3d87cd2fe7aa2cc1\",\n                \"total_price\": 40,\n                \"workflow_id\": 1,\n                \"idempotent_id\": \"order_aa90539b2558af249d\",\n                \"distributor_id\": 2,\n                \"total_quantity\": 1,\n                \"workflow_event_id\": 291,\n                \"workflow_reference\": \"w_b50ea78a95e96b36\",\n                \"workflow_event_reference\": \"we_d6711cf97ded7069\"\n            },\n            \"request_params\": {\n                \"action\": \"sell\",\n                \"format\": \"json\",\n                \"giftcard\": {\n                    \"data\": [\n                        {\n                            \"amount\": \"40\",\n                            \"is_gift\": false,\n                            \"customer_name\": \"Mrudul\",\n                            \"delivery_mode\": \"DIGITAL\",\n                            \"customer_email\": \"mrudul@example.com\",\n                            \"giftcard_numbers\": []\n                        }\n                    ],\n                    \"store_ref\": \"store_8412d02623ce4c1a30\",\n                    \"order_note\": \"\",\n                    \"client_order_id\": \"\",\n                    \"giftcard_unit_id\": 1\n                },\n                \"controller\": \"app/webpos\"\n            },\n            \"customer_id\": \"customer_3c3d87cd2fe7aa2cc1\",\n            \"customer_name\": \"Mrudul\",\n            \"customer_email\": \"mrudul@example.com\",\n            \"workflow_executions\": [\n                {\n                    \"reference_no\": \"workflow_execution_1535cee839e6920161\",\n                    \"workflow\": {\n                        \"title\": \" Issue Store Credit When Order Places\",\n                        \"trigger\": \"order_paid\",\n                        \"platforms\": null,\n                        \"reference_no\": \"w_b50ea78a95e96b36\"\n                    },\n                    \"executed_actions\": [\n                        {\n                            \"action_type\": \"DELAY\",\n                            \"action_properties\": {\n                                \"delay_type\": \"hours\",\n                                \"delay_amount\": 1\n                            },\n                            \"action_response\": \"SUCCESS\",\n                            \"error_message\": null,\n                            \"reference_no\": \"workflow_result_1bfac958f55865f48c\",\n                            \"created_at\": \"2023-06-22T14:29:04.781Z\",\n                            \"updated_at\": \"2023-06-22T14:29:04.781Z\"\n                        },\n                        {\n                            \"action_type\": \"ISSUE_STORE_CREDIT\",\n                            \"action_properties\": {\n                                \"reward\": {\n                                    \"fixed\": {\n                                        \"amount\": 10\n                                    },\n                                    \"operator\": \"fixed\"\n                                },\n                                \"is_expired\": false\n                            },\n                            \"action_response\": \"SUCCESS\",\n                            \"error_message\": null,\n                            \"reference_no\": \"workflow_result_cde86bf1ee5f258a96\",\n                            \"created_at\": \"2023-06-22T14:32:28.938Z\",\n                            \"updated_at\": \"2023-06-22T14:32:28.938Z\"\n                        }\n                    ]\n                }\n            ]\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"1aa934bc-74d5-42fc-b1c3-3abbadb8a95a"}],"id":"7dd30875-99f2-4d3a-95f0-0e3e7c9c8c3a","_postman_id":"7dd30875-99f2-4d3a-95f0-0e3e7c9c8c3a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}}},{"name":"VIP Tiers","item":[{"name":"Get Tiers","id":"9e78cad5-6a40-4a7a-a68e-a9b0822731f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"idempotent_id\": \"ODXXXXX\",\n    \"trigger\": \"order_paid\",\n    \"email\": \"jhon@example.com\",\n    \"total_price\": 150\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/tiers?page_no=1","description":"<p>This endpoint retrieves a list of VIP tiers.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_no</td>\n<td><strong>Yes</strong></td>\n<td>Page no &gt; 0.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td><code>asc</code> or <code>desc</code>. Default <code>desc</code></td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of transaction</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of transaction</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","tiers"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"page_no","value":"1"}],"variable":[]}},"response":[{"id":"c342d1f1-1353-4c70-b250-bbe5cc1ae497","name":"Get Tiers","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"idempotent_id\": \"ODXXXXX\",\n    \"trigger\": \"order_paid\",\n    \"email\": \"jhon@example.com\",\n    \"total_price\": 150\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.giftcard.99minds.io/api/v1/tiers?page_no=1","host":["https://api.giftcard.99minds.io"],"path":["api","v1","tiers"],"query":[{"key":"page_no","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"04b75c331237041b6e284a0fddcc138f\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"17d66f7f-3ee6-488f-a5ed-dc9fb897dca8"},{"key":"X-Runtime","value":"0.039424"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"513"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"tiers\": [\n            {\n                \"name\": \"Silver\",\n                \"default_tier\": true,\n                \"description\": \"Make transaction of 5000 to upgrade to this tier\",\n                \"tier_id\": \"tier_04803667c20194fb67\",\n                \"customer_count\": 27,\n                \"created_at\": \"2022-05-10T07:22:52.090Z\",\n                \"updated_at\": \"2023-06-30T13:59:48.351Z\"\n            },\n            {\n                \"name\": \"Blue\",\n                \"default_tier\": false,\n                \"description\": \"Initial Class\",\n                \"tier_id\": \"tier_d305f19bc98fffa9e3\",\n                \"customer_count\": 2,\n                \"created_at\": \"2022-03-23T12:28:38.083Z\",\n                \"updated_at\": \"2022-03-23T12:28:38.083Z\"\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"9e78cad5-6a40-4a7a-a68e-a9b0822731f0"},{"name":"Get Tier Transactions","id":"bb09a36f-d475-4838-83b7-78cc31563e49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"idempotent_id\": \"ODXXXXX\",\n    \"trigger\": \"order_paid\",\n    \"email\": \"jhon@example.com\",\n    \"total_price\": 150\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/tiers/transactions?page_no=1","description":"<p>This endpoint retrieves a list of transactions associated with a specific VIP tier.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page_no</td>\n<td><strong>Yes</strong></td>\n<td>Page no &gt; 0.</td>\n</tr>\n<tr>\n<td>transaction_source</td>\n<td><strong>No</strong></td>\n<td>Source of transaction</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID linked to the transaction.</td>\n</tr>\n<tr>\n<td>current_tier_name</td>\n<td><strong>No</strong></td>\n<td>Tier name</td>\n</tr>\n<tr>\n<td>previous_tier_name</td>\n<td><strong>No</strong></td>\n<td>Tier name</td>\n</tr>\n<tr>\n<td>current_tier_id</td>\n<td><strong>No</strong></td>\n<td>Tier ID</td>\n</tr>\n<tr>\n<td>previous_tier_id</td>\n<td><strong>No</strong></td>\n<td>Tier ID</td>\n</tr>\n<tr>\n<td>sort</td>\n<td><strong>No</strong></td>\n<td><code>asc</code> or <code>desc</code>. Default <code>desc</code></td>\n</tr>\n<tr>\n<td>min_id</td>\n<td><strong>No</strong></td>\n<td>Min Id of transaction</td>\n</tr>\n<tr>\n<td>max_id</td>\n<td><strong>No</strong></td>\n<td>Max Id of transaction</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><strong>No</strong></td>\n<td>Time in UNIX timestamp format</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","tiers","transactions"],"host":["https://api.giftcard.99minds.io"],"query":[{"key":"page_no","value":"1"}],"variable":[]}},"response":[{"id":"52fbad04-3b22-43f6-af04-37d3f8685eb5","name":"Get Tier Transactions","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"idempotent_id\": \"ODXXXXX\",\n    \"trigger\": \"order_paid\",\n    \"email\": \"jhon@example.com\",\n    \"total_price\": 150\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.giftcard.99minds.io/api/v1/tiers/transactions?page_no=1","host":["https://api.giftcard.99minds.io"],"path":["api","v1","tiers","transactions"],"query":[{"key":"page_no","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"a3f84700901082343178196fa6f3e315\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"3835e3c5-b280-4582-a46e-c233aa88a052"},{"key":"X-Runtime","value":"0.553361"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"13351"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"total_records\": 34,\n        \"total_pages\": 1,\n        \"current_page\": 1,\n        \"next_page\": null,\n        \"prev_page\": null,\n        \"version\": {\n            \"min\": 1,\n            \"max\": 34\n        },\n        \"transactions\": [\n            {\n                \"customer_id\": \"customer_89870b60bbb5a2d4b4\",\n                \"customer_email\": null,\n                \"customer_name\": \"Kumar Sanu\",\n                \"tier_id\": \"transaction_ff73bf0678c6e4f2e6\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2024-07-02T10:48:01.497Z\",\n                \"updated_at\": \"2024-07-02T10:48:01.497Z\"\n            },\n            {\n                \"customer_id\": \"customer_48172eb8c9fdc47c37\",\n                \"customer_email\": null,\n                \"customer_name\": null,\n                \"tier_id\": \"transaction_0c8062a16497b22685\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2024-06-06T11:45:15.151Z\",\n                \"updated_at\": \"2024-06-06T11:45:15.151Z\"\n            },\n            {\n                \"customer_id\": \"customer_658ba24e70cd1436f5\",\n                \"customer_email\": null,\n                \"customer_name\": null,\n                \"tier_id\": \"transaction_19d9e51a6ba3bb3d80\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2024-05-11T08:44:17.554Z\",\n                \"updated_at\": \"2024-05-11T08:44:17.554Z\"\n            },\n            {\n                \"customer_id\": \"customer_e5762e7fd464c15260\",\n                \"customer_email\": null,\n                \"customer_name\": null,\n                \"tier_id\": \"transaction_5e878e4db8ed885361\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2024-05-09T14:37:33.065Z\",\n                \"updated_at\": \"2024-05-09T14:37:33.065Z\"\n            },\n            {\n                \"customer_id\": \"customer_849adbc39175bc3f74\",\n                \"customer_email\": null,\n                \"customer_name\": null,\n                \"tier_id\": \"transaction_79522698b54d3acd9f\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2024-05-09T14:37:22.603Z\",\n                \"updated_at\": \"2024-05-09T14:37:22.603Z\"\n            },\n            {\n                \"customer_id\": \"customer_27c36c70b1afa23a96\",\n                \"customer_email\": null,\n                \"customer_name\": null,\n                \"tier_id\": \"transaction_ff94153f39a7630364\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2024-05-09T14:32:15.891Z\",\n                \"updated_at\": \"2024-05-09T14:32:15.891Z\"\n            },\n            {\n                \"customer_id\": \"customer_9c7dc1cbf193e24df9\",\n                \"customer_email\": \"asdsa@asd.com\",\n                \"customer_name\": \"asd\",\n                \"tier_id\": \"transaction_0fef16d7818c3d9656\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2024-02-07T13:32:05.631Z\",\n                \"updated_at\": \"2024-02-07T13:32:05.631Z\"\n            },\n            {\n                \"customer_id\": \"customer_14a97741c555396ce3\",\n                \"customer_email\": \"asd@asd.com\",\n                \"customer_name\": null,\n                \"tier_id\": \"transaction_a4b8a33d519fa65a39\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2024-02-07T13:30:07.543Z\",\n                \"updated_at\": \"2024-02-07T13:30:07.543Z\"\n            },\n            {\n                \"customer_id\": \"customer_1aa2fcadb860e8e6be\",\n                \"customer_email\": null,\n                \"customer_name\": \"OkCool\",\n                \"tier_id\": \"transaction_8e771059afeec9171c\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2024-02-01T09:23:59.299Z\",\n                \"updated_at\": \"2024-02-01T09:23:59.299Z\"\n            },\n            {\n                \"customer_id\": \"customer_2b0a35ed34ecd76cd1\",\n                \"customer_email\": null,\n                \"customer_name\": \"OkCool\",\n                \"tier_id\": \"transaction_390aa87a7b58b51f3f\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2024-02-01T09:22:29.364Z\",\n                \"updated_at\": \"2024-02-01T09:22:29.364Z\"\n            },\n            {\n                \"customer_id\": \"customer_1c135053b40c51c7de\",\n                \"customer_email\": null,\n                \"customer_name\": null,\n                \"tier_id\": \"transaction_34d5e3a2585b11e073\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2024-02-01T09:20:03.096Z\",\n                \"updated_at\": \"2024-02-01T09:20:03.096Z\"\n            },\n            {\n                \"customer_id\": \"customer_d7bfdf971d80a8dd65\",\n                \"customer_email\": null,\n                \"customer_name\": null,\n                \"tier_id\": \"transaction_39cb699abf64fda2df\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2024-02-01T09:17:42.070Z\",\n                \"updated_at\": \"2024-02-01T09:17:42.070Z\"\n            },\n            {\n                \"customer_id\": \"customer_bb240dc6e043bdecf3\",\n                \"customer_email\": \"mrudul@99minds.co\",\n                \"customer_name\": null,\n                \"tier_id\": \"transaction_73aa4c4df6d93de7b5\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-12-28T17:11:43.945Z\",\n                \"updated_at\": \"2023-12-28T17:11:43.945Z\"\n            },\n            {\n                \"customer_id\": \"customer_7779361cc92dacf97f\",\n                \"customer_email\": null,\n                \"customer_name\": null,\n                \"tier_id\": \"transaction_c165a01993e047493c\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-10-07T08:35:30.236Z\",\n                \"updated_at\": \"2023-10-07T08:35:30.236Z\"\n            },\n            {\n                \"customer_id\": \"customer_31c93074bd0477ddfe\",\n                \"customer_email\": null,\n                \"customer_name\": null,\n                \"tier_id\": \"transaction_77db026a5d03c13a42\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-10-04T13:04:27.569Z\",\n                \"updated_at\": \"2023-10-04T13:04:27.569Z\"\n            },\n            {\n                \"customer_id\": \"customer_10b43ebb11139b768d\",\n                \"customer_email\": \"kuntal@99minds.io\",\n                \"customer_name\": \"Kuntal\",\n                \"tier_id\": \"transaction_5479b255e6ab50a6e6\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-09-20T07:02:16.180Z\",\n                \"updated_at\": \"2023-09-20T07:02:16.180Z\"\n            },\n            {\n                \"customer_id\": \"customer_b83eef43866595e49d\",\n                \"customer_email\": \"asdsad1234@asd.com\",\n                \"customer_name\": \"sadd\",\n                \"tier_id\": \"transaction_c79d22211a6d0079b9\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-09-20T06:32:34.389Z\",\n                \"updated_at\": \"2023-09-20T06:32:34.389Z\"\n            },\n            {\n                \"customer_id\": \"customer_f26f7a3f2232a7fce3\",\n                \"customer_email\": null,\n                \"customer_name\": \"\",\n                \"tier_id\": \"transaction_f521017e15e3eb4296\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-08-23T11:32:28.198Z\",\n                \"updated_at\": \"2023-08-23T11:32:28.198Z\"\n            },\n            {\n                \"customer_id\": \"customer_fdf247012c725b188a\",\n                \"customer_email\": \"mrudul@doboz.com\",\n                \"customer_name\": \"Mrudul 2\",\n                \"tier_id\": \"transaction_ac10574155a6d28572\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-08-22T18:30:36.648Z\",\n                \"updated_at\": \"2023-08-22T18:30:36.648Z\"\n            },\n            {\n                \"customer_id\": \"customer_e702ced4664e52687b\",\n                \"customer_email\": \"weimann.brody@example.com\",\n                \"customer_name\": \"Brody Weimann\",\n                \"tier_id\": \"transaction_2ab978dd6794639345\",\n                \"current_tier\": \"Blue\",\n                \"current_tier_id\": \"tier_d305f19bc98fffa9e3\",\n                \"previous_tier\": \"Silver\",\n                \"previous_tier_id\": \"tier_04803667c20194fb67\",\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-08-02T13:45:51.296Z\",\n                \"updated_at\": \"2023-08-02T13:45:51.296Z\"\n            },\n            {\n                \"customer_id\": \"customer_1e421d85353506acc2\",\n                \"customer_email\": null,\n                \"customer_name\": \"\",\n                \"tier_id\": \"transaction_04a6f0d9bc0af34421\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-07-31T17:19:17.853Z\",\n                \"updated_at\": \"2023-07-31T17:19:17.853Z\"\n            },\n            {\n                \"customer_id\": \"customer_4daec5fdcbc49487e7\",\n                \"customer_email\": null,\n                \"customer_name\": \"\",\n                \"tier_id\": \"transaction_04624425b8cf8d3bf8\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-07-28T13:32:47.273Z\",\n                \"updated_at\": \"2023-07-28T13:32:47.273Z\"\n            },\n            {\n                \"customer_id\": \"customer_f39c49944a3e7ae75c\",\n                \"customer_email\": null,\n                \"customer_name\": \"\",\n                \"tier_id\": \"transaction_172fcddbd709b12603\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-07-26T13:48:35.594Z\",\n                \"updated_at\": \"2023-07-26T13:48:35.594Z\"\n            },\n            {\n                \"customer_id\": \"customer_e702ced4664e52687b\",\n                \"customer_email\": \"weimann.brody@example.com\",\n                \"customer_name\": \"Brody Weimann\",\n                \"tier_id\": \"transaction_d9fc05cde38ee640ed\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-07-25T10:01:15.304Z\",\n                \"updated_at\": \"2023-07-25T10:01:15.304Z\"\n            },\n            {\n                \"customer_id\": \"customer_e170ba2ca074de7141\",\n                \"customer_email\": \"21schwartzm@gmaill.com\",\n                \"customer_name\": \" \",\n                \"tier_id\": \"transaction_7043dfc32d7f58e251\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-07-16T08:09:02.403Z\",\n                \"updated_at\": \"2023-07-16T08:09:02.403Z\"\n            },\n            {\n                \"customer_id\": \"customer_9895956f5a5d6649ec\",\n                \"customer_email\": \"21schwartzm@gmail.com\",\n                \"customer_name\": \" \",\n                \"tier_id\": \"transaction_051cb6475ce78a15a1\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-07-16T08:09:02.153Z\",\n                \"updated_at\": \"2023-07-16T08:09:02.153Z\"\n            },\n            {\n                \"customer_id\": \"customer_b8e529bc57681e285b\",\n                \"customer_email\": \"13benek@gmail.com\",\n                \"customer_name\": \"Kayona Shirar\",\n                \"tier_id\": \"transaction_4636aa672b5527af07\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-07-16T08:09:01.153Z\",\n                \"updated_at\": \"2023-07-16T08:09:01.153Z\"\n            },\n            {\n                \"customer_id\": \"customer_3962c9992584617de4\",\n                \"customer_email\": \"kalene.brennan@gmail.com\",\n                \"customer_name\": null,\n                \"tier_id\": \"transaction_0b278f1e44aff24669\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-07-01T18:32:43.271Z\",\n                \"updated_at\": \"2023-07-01T18:32:43.271Z\"\n            },\n            {\n                \"customer_id\": \"customer_76333368bb33182617\",\n                \"customer_email\": \"damaness352@gmail.com\",\n                \"customer_name\": null,\n                \"tier_id\": \"transaction_716e998e691e6b4d43\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-07-01T18:32:41.891Z\",\n                \"updated_at\": \"2023-07-01T18:32:41.891Z\"\n            },\n            {\n                \"customer_id\": \"customer_3c3d87cd2fe7aa2cc1\",\n                \"customer_email\": \"mrudul@example.com\",\n                \"customer_name\": \"Mrudul\",\n                \"tier_id\": \"transaction_9fa7cf0a76a835c971\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": null,\n                \"client_order_id\": null,\n                \"created_at\": \"2023-06-22T14:26:41.672Z\",\n                \"updated_at\": \"2023-06-22T14:26:41.672Z\"\n            },\n            {\n                \"customer_id\": \"customer_972898f121dca8daf4\",\n                \"customer_email\": null,\n                \"customer_name\": \"Natu Natu\",\n                \"tier_id\": \"transaction_ec69ba918e6ba01e53\",\n                \"current_tier\": \"Blue\",\n                \"current_tier_id\": \"tier_d305f19bc98fffa9e3\",\n                \"previous_tier\": \"Silver\",\n                \"previous_tier_id\": \"tier_04803667c20194fb67\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2023-06-18T07:40:42.549Z\",\n                \"updated_at\": \"2023-06-18T07:40:42.549Z\"\n            },\n            {\n                \"customer_id\": \"customer_972898f121dca8daf4\",\n                \"customer_email\": null,\n                \"customer_name\": \"Natu Natu\",\n                \"tier_id\": \"transaction_e432c974f8ce3750d1\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": \"Blue\",\n                \"previous_tier_id\": \"tier_d305f19bc98fffa9e3\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2023-06-18T07:38:49.180Z\",\n                \"updated_at\": \"2023-06-18T07:38:49.180Z\"\n            },\n            {\n                \"customer_id\": \"customer_972898f121dca8daf4\",\n                \"customer_email\": null,\n                \"customer_name\": \"Natu Natu\",\n                \"tier_id\": \"transaction_301f9c575399d339be\",\n                \"current_tier\": \"Blue\",\n                \"current_tier_id\": \"tier_d305f19bc98fffa9e3\",\n                \"previous_tier\": \"Silver\",\n                \"previous_tier_id\": \"tier_04803667c20194fb67\",\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2023-06-18T07:38:02.988Z\",\n                \"updated_at\": \"2023-06-18T07:38:02.988Z\"\n            },\n            {\n                \"customer_id\": \"customer_972898f121dca8daf4\",\n                \"customer_email\": null,\n                \"customer_name\": \"Natu Natu\",\n                \"tier_id\": \"transaction_216402462fd8a8de28\",\n                \"current_tier\": \"Silver\",\n                \"current_tier_id\": \"tier_04803667c20194fb67\",\n                \"previous_tier\": null,\n                \"previous_tier_id\": null,\n                \"transaction_source\": \"DASHBOARD\",\n                \"client_order_id\": null,\n                \"created_at\": \"2023-06-17T07:33:14.813Z\",\n                \"updated_at\": \"2023-06-17T07:33:14.813Z\"\n            }\n        ]\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": null,\n    \"errors\": []\n}"}],"_postman_id":"bb09a36f-d475-4838-83b7-78cc31563e49"},{"name":"Assign TIer","id":"d36418e7-8c4a-458e-9fe8-253e563c8268","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"tier\": {\n        \"customer_id\": \"customer_89870b60bbb5a2d4b4\",\n        \"client_order_id\": \"XXXX\",\n        \"tier_id\": \"tier_04803667c20194fb67\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/tiers/assign","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Any one of:  <br />customer_id  <br />customer_email  <br />client_customer_id &amp; client_customer_platform  <br />customer_email</td>\n<td><strong>Yes</strong></td>\n<td><code>customer_email</code>: Customer's email where gift cards is to be issued.  <br /><code>customer_id</code>: Unique customer id generated by 99minds.  <br /><code>customer_email</code>: Customer's email.  <br /><code>client_customer_id</code>: Customer id provided by client when creating/updating customer.  <br />Do note that <code>client_customer_id</code> are platform specific.  <br /><code>client_customer_platform</code>: Any one of the supported platforms. client_customer_platform should be passed in along with client_customer_id for consistent results as different platforms might have same <code>id</code> for a specific customer</td>\n</tr>\n<tr>\n<td>Any one of:  <br />tier_id  <br />tier_name</td>\n<td><strong>Yes</strong></td>\n<td><code>tier_id</code>: VIP tier ID generated by 99minds.  <br /><code>tier_name</code>: VIP tier name provided by merchant.</td>\n</tr>\n<tr>\n<td>opt_in_loyalty</td>\n<td>No</td>\n<td><code>Boolean</code> . Specify whether customers should be manually opted into the loyalty program. This is required when loyalty program opt in is enabled</td>\n</tr>\n<tr>\n<td>client_order_id</td>\n<td><strong>No</strong></td>\n<td>External Order ID to link to this transaction.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}},"urlObject":{"path":["api","v1","tiers","assign"],"host":["https://api.giftcard.99minds.io"],"query":[],"variable":[]}},"response":[{"id":"c3a308f5-b3c6-4458-a026-29f5622143c3","name":"Assign Tier","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"tier\": {\n        \"customer_id\": \"customer_89870b60bbb5a2d4b4\",\n        \"client_order_id\": \"XXXX\",\n        \"tier_id\": \"tier_04803667c20194fb67\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.giftcard.99minds.io/api/v1/tiers/assign"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"4ab5c92e0655f5103e2b41c5bf528807\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d67ee515-2e84-4dbf-b712-ef4ce9565ae3"},{"key":"X-Runtime","value":"0.620484"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"508"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"tier\": {\n            \"customer_id\": \"customer_89870b60bbb5a2d4b4\",\n            \"customer_email\": null,\n            \"customer_name\": \"Kumar Sanu\",\n            \"tier_id\": \"transaction_227ff7be4838f0f0a1\",\n            \"current_tier\": \"Silver\",\n            \"current_tier_id\": \"tier_04803667c20194fb67\",\n            \"previous_tier\": \"Blue\",\n            \"previous_tier_id\": \"tier_d305f19bc98fffa9e3\",\n            \"transaction_source\": \"API\",\n            \"client_order_id\": \"XXXX\",\n            \"created_at\": \"2024-08-16T09:54:30.143Z\",\n            \"updated_at\": \"2024-08-16T09:54:30.143Z\"\n        }\n    },\n    \"status\": \"OK\",\n    \"code\": 200,\n    \"message\": \"VIP tier assigned to the customer\",\n    \"errors\": []\n}"}],"_postman_id":"d36418e7-8c4a-458e-9fe8-253e563c8268"}],"id":"76f04b8f-546d-4c4f-acf2-c5fab9e962f1","_postman_id":"76f04b8f-546d-4c4f-acf2-c5fab9e962f1","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}}},{"name":"Webhooks","item":[],"id":"4e7a906f-09fe-4863-9613-c09475a54b39","description":"<h1 id=\"retry-policy\">Retry Policy</h1>\n<p>We retry failed webhook deliveries up to 5 times using exponential backoff with jitter.</p>\n<h3 id=\"backoff-formula\">Backoff formula:</h3>\n<p><code>delay_seconds = (retry_count ** 6) + rand(30..600)</code><br />where retry_count starts at 1 on the first retry, and rand(30..600) adds 30s–10m of jitter to spread out bursts.</p>\n<p>Schedule (per attempt after the initial failure):</p>\n<ol>\n<li><p>31s – 10m 01s</p>\n</li>\n<li><p>1m 34s – 11m 04s</p>\n</li>\n<li><p>12m 39s – 22m 09s</p>\n</li>\n<li><p>1h 08m 46s – 1h 18m 16s</p>\n</li>\n<li><p>4h 20m 55s – 4h 30m 25s</p>\n</li>\n</ol>\n<p>Maximum retry horizon: ~4.5 hours after the first failure.</p>\n<h3 id=\"when-we-retry\">When we retry:</h3>\n<ol>\n<li><p>Network errors</p>\n</li>\n<li><p>Timeouts</p>\n</li>\n<li><p>HTTP non 2xx responses</p>\n</li>\n</ol>\n<h3 id=\"idempotency\">Idempotency:</h3>\n<p>Your endpoint must be idempotent. We may deliver the same event more than once; use the event id to de-duplicate.</p>\n<h3 id=\"response-requirements\">Response requirements:</h3>\n<p>Return 2xx once you’ve persisted the event. If you need to perform long-running work, acknowledge first and process asynchronously.</p>\n<h1 id=\"sample-payloads\">Sample Payloads:</h1>\n<p><strong><code>order.fulfilled</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"order.fulfilled\",\n  \"payload\": {\n    \"orderid\": \"order_631a1b0c6b5ecdd6c6\",\n    \"order_source\": \"BIGCOMMERCE\",\n    \"order_status\": \"FULFILLED\",\n    \"client_order_id\": \"2537\",\n    \"order_total\": \"50.0\",\n    \"currency\": \"USD\",\n    \"created_at\": \"2021-08-09T10:07:18.000Z\",\n    \"customer\": {\n      \"name\": \"Test2 Test\",\n      \"email\": \"test40@gmail.com\",\n      \"customer_id\": \"user_10afb6532b2ebf44c6\"\n    },\n    \"items\": [\n      {\n        \"status\": \"FULFILLED\",\n        \"quantity\": 1,\n        \"giftcard_value\": \"50.00\",\n        \"sender_email\": \"test40@gmail.com\",\n        \"receiver_email\": \"jhon@example.com\",\n        \"is_gift\": false,\n        \"promo_code\": null,\n        \"discounted_value\": null,\n        \"giftcards\": [\n          {\n            \"card_id\": \"card_61b859cbc20118f945\",\n            \"active\": true,\n            \"giftcard_number\": \"1206931451125465\",\n            \"original_value\": \"50.00\",\n            \"balance\": \"50.00\",\n            \"expiration_date\": null,\n            \"currency\": \"USD\",\n            \"created_at\": \"2021-08-09T10:07:18.000Z\"\n          }\n        ]\n      }\n    ]\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>giftcard.deactivated</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"giftcard.deactivated\",\n  \"payload\": {\n    \"transaction_amount\": null,\n    \"transaction_type\": \"DEACTIVATION\",\n    \"transaction_id\": \"transaction_e5bd8049ef9978223f\",\n    \"client_order_id\": null,\n    \"transaction_date\": \"2021-08-11T15:14:02.000Z\",\n    \"giftcard\": {\n      \"card_id\": \"card_17660a5ee6c80c8a01\",\n      \"batch_id\": \"batch_1c5498d9a3eddeb847\",\n      \"active\": false,\n      \"giftcard_number\": \"2901706836129251\",\n      \"original_value\": \"0.00\",\n      \"balance\": \"0.00\",\n      \"expiration_date\": null,\n      \"campaign_name\": \"HIKE-USD-PHYSICAL\",\n      \"campaign_id\": null,\n      \"currency\": \"USD\",\n      \"created_at\": \"2021-08-02T17:10:02.000Z\"\n    },\n    \"customer\": {\n      \"name\": null,\n      \"email\": null,\n      \"customer_id\": null\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>giftcard.activated</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"giftcard.activated\",\n  \"payload\": {\n    \"transaction_amount\": null,\n    \"transaction_type\": \"ACTIVATION\",\n    \"transaction_id\": \"transaction_66a9777e8824dcf0c1\",\n    \"client_order_id\": null,\n    \"transaction_date\": \"2021-08-11T15:25:47.000Z\",\n    \"note\": \"Test webhook activated\",\n    \"giftcard\": {\n      \"card_id\": \"card_17660a5ee6c80c8a01\",\n      \"batch_id\": \"batch_1c5498d9a3eddeb847\",\n      \"active\": true,\n      \"giftcard_number\": \"2901706836129251\",\n      \"original_value\": \"0.00\",\n      \"balance\": \"0.00\",\n      \"expiration_date\": null,\n      \"campaign_name\": \"HIKE-USD-PHYSICAL\",\n      \"campaign_id\": null,\n      \"currency\": \"USD\",\n      \"created_at\": \"2021-08-02T17:10:02.000Z\"\n    },\n    \"customer\": {\n      \"name\": null,\n      \"email\": null,\n      \"customer_id\": null\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>giftcard.blocked</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"giftcard.blocked\",\n  \"payload\": {\n    \"transaction_amount\": null,\n    \"transaction_type\": \"BLOCK\",\n    \"transaction_id\": \"transaction_66a9777e8824dcf0c1\",\n    \"client_order_id\": null,\n    \"transaction_date\": \"2021-08-11T15:25:47.000Z\",\n    \"note\": \"Test webhook blocked\",\n    \"giftcard\": {\n      \"card_id\": \"card_17660a5ee6c80c8a01\",\n      \"batch_id\": \"batch_1c5498d9a3eddeb847\",\n      \"active\": true,\n      \"giftcard_number\": \"2901706836129251\",\n      \"original_value\": \"0.00\",\n      \"balance\": \"0.00\",\n      \"expiration_date\": null,\n      \"campaign_name\": \"HIKE-USD-PHYSICAL\",\n      \"campaign_id\": null,\n      \"currency\": \"USD\",\n      \"created_at\": \"2021-08-02T17:10:02.000Z\"\n    },\n    \"customer\": {\n      \"name\": null,\n      \"email\": null,\n      \"customer_id\": null\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>giftcard.voided</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"giftcard.voided\",\n  \"payload\": {\n    \"transaction_amount\": null,\n    \"transaction_type\": \"VOID\",\n    \"transaction_id\": \"transaction_66a9777e8824dcf0c1\",\n    \"client_order_id\": null,\n    \"transaction_date\": \"2021-08-11T15:25:47.000Z\",\n    \"note\": \"Test webhook voided\",\n    \"giftcard\": {\n      \"card_id\": \"card_17660a5ee6c80c8a01\",\n      \"batch_id\": \"batch_1c5498d9a3eddeb847\",\n      \"active\": true,\n      \"giftcard_number\": \"2901706836129251\",\n      \"original_value\": \"0.00\",\n      \"balance\": \"0.00\",\n      \"expiration_date\": null,\n      \"campaign_name\": \"HIKE-USD-PHYSICAL\",\n      \"campaign_id\": null,\n      \"currency\": \"USD\",\n      \"created_at\": \"2021-08-02T17:10:02.000Z\"\n    },\n    \"customer\": {\n      \"name\": null,\n      \"email\": null,\n      \"customer_id\": null\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>giftcard.extend_expiry</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"giftcard.extend_expiry\",\n  \"payload\": {\n    \"transaction_amount\": null,\n    \"transaction_type\": \"EXTEND_EXPIRY\",\n    \"transaction_id\": \"transaction_54f93db91738227a28\",\n    \"client_order_id\": null,\n    \"transaction_date\": \"2021-08-11T15:31:33.000Z\",\n    \"note\": null,\n    \"giftcard\": {\n      \"card_id\": \"card_a1485b7ed8c5faa697\",\n      \"batch_id\": null,\n      \"active\": true,\n      \"giftcard_number\": \"CHRIS18020212481\",\n      \"original_value\": \"18.00\",\n      \"balance\": \"18.00\",\n      \"expiration_date\": \"2021-12-17\",\n      \"campaign_name\": \"Christmas\",\n      \"campaign_id\": null,\n      \"currency\": \"USD\",\n      \"created_at\": \"2021-05-19T10:49:53.000Z\"\n    },\n    \"customer\": {\n      \"name\": \"Gaurav D\",\n      \"email\": \"jhon@example.com\",\n      \"customer_id\": \"customer_id32cfffa96ba4e22e91\"\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>giftcard.reloaded</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"giftcard.reloaded\",\n  \"payload\": {\n    \"transaction_amount\": \"12.0\",\n    \"transaction_type\": \"RELOAD\",\n    \"transaction_id\": \"transaction_46412ea140f6872029\",\n    \"client_order_id\": null,\n    \"transaction_date\": \"2021-08-11T15:32:51.000Z\",\n    \"note\": \"Test webhook reload\",\n    \"giftcard\": {\n      \"card_id\": \"card_310d1461d38cddaa5c\",\n      \"batch_id\": null,\n      \"active\": true,\n      \"giftcard_number\": \"3609677699610877\",\n      \"original_value\": \"62.00\",\n      \"balance\": \"62.00\",\n      \"expiration_date\": null,\n      \"campaign_name\": \"HIKE-USD-PHYSICAL\",\n      \"campaign_id\": null,\n      \"currency\": \"USD\",\n      \"created_at\": \"2021-08-11T14:52:34.000Z\"\n    },\n    \"customer\": {\n      \"name\": \"John Wick\",\n      \"email\": \"jhon@example.com\",\n      \"customer_id\": \"customer_idde7038b95037f52de2\"\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>giftcard.redeemed</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"giftcard.redeemed\",\n  \"payload\": {\n    \"transaction_amount\": \"25.0\",\n    \"transaction_type\": \"REDEMPTION\",\n    \"transaction_id\": \"transaction_dc84fd6b2ff21367ef\",\n    \"client_order_id\": null,\n    \"transaction_date\": \"2021-08-11T15:34:37.000Z\",\n    \"note\": null,\n    \"giftcard\": {\n      \"card_id\": \"card_310d1461d38cddaa5c\",\n      \"batch_id\": null,\n      \"active\": true,\n      \"giftcard_number\": \"3609677699610877\",\n      \"original_value\": \"62.00\",\n      \"balance\": \"37.00\",\n      \"expiration_date\": null,\n      \"campaign_name\": \"HIKE-USD-PHYSICAL\",\n      \"campaign_id\": null,\n      \"currency\": \"USD\",\n      \"created_at\": \"2021-08-11T14:52:34.000Z\"\n    },\n    \"customer\": {\n      \"name\": \"John Wick\",\n      \"email\": \"jhon@example.com\",\n      \"customer_id\": \"customer_idde7038b95037f52de2\"\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>giftcard.amount_loaded</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"giftcard.amount_loaded\",\n  \"payload\": {\n    \"transaction_amount\": \"30.0\",\n    \"transaction_type\": \"AMOUNT_LOADED\",\n    \"transaction_id\": \"transaction_416c3f718c53b12589\",\n    \"client_order_id\": null,\n    \"transaction_date\": \"2021-08-11T15:41:38.000Z\",\n    \"note\": \"Test webhook Loaded\",\n    \"giftcard\": {\n      \"card_id\": \"card_f707e4ee2c38b7889f\",\n      \"batch_id\": \"batch_1c5498d9a3eddeb847\",\n      \"active\": true,\n      \"giftcard_number\": \"2184071578415366\",\n      \"original_value\": \"30.00\",\n      \"balance\": \"30.00\",\n      \"expiration_date\": null,\n      \"campaign_name\": \"HIKE-USD-PHYSICAL\",\n      \"campaign_id\": null,\n      \"currency\": \"USD\",\n      \"created_at\": \"2021-08-02T17:10:02.000Z\"\n    },\n    \"customer\": {\n      \"name\": null,\n      \"email\": null,\n      \"customer_id\": null\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>giftcard.refunded</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"giftcard.refunded\",\n  \"payload\": {\n    \"transaction_amount\": \"13.0\",\n    \"transaction_type\": \"REFUND\",\n    \"transaction_id\": \"transaction_7eb2f6889a6f8f4418\",\n    \"client_order_id\": null,\n    \"transaction_date\": \"2021-08-11T15:42:52.000Z\",\n    \"note\": \"Test webhook refund\",\n    \"giftcard\": {\n      \"card_id\": \"card_310d1461d38cddaa5c\",\n      \"batch_id\": null,\n      \"active\": true,\n      \"giftcard_number\": \"3609677699610877\",\n      \"original_value\": \"62.00\",\n      \"balance\": \"50.00\",\n      \"expiration_date\": null,\n      \"campaign_name\": \"HIKE-USD-PHYSICAL\",\n      \"campaign_id\": null,\n      \"currency\": \"USD\",\n      \"created_at\": \"2021-08-11T14:52:34.000Z\"\n    },\n    \"customer\": {\n      \"name\": \"John Wick\",\n      \"email\": \"jhon@example.com\",\n      \"customer_id\": \"customer_idde7038b95037f52de2\"\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>storecredit.created</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"storecredit.created\",\n  \"payload\": {\n    \"store_credit\": {\n      \"customer_name\": \"MI\",\n      \"customer_email\": \"mi@gmail.com\",\n      \"customer_id\": \"customer_e09d0e65c9612b26c7\",\n      \"card_number\": \"HNV1NK-MFZF\",\n      \"balance\": \"0.00\",\n      \"card_id\": \"card_2fb7ffcecb3d4f7153\",\n      \"last_transaction\": \"CREATION\",\n      \"created_at\": \"2021-12-24T09:44:02.000Z\",\n      \"transaction\": {\n        \"transaction_id\": \"transaction_5b417021e8af3255dd\",\n        \"transaction_amount\": \"0.0\",\n        \"transaction_type\": \"CREATION\",\n        \"transaction_date\": \"2021-12-24T09:44:03.000Z\",\n        \"client_order_id\": null,\n        \"note\": null\n      }\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>storecredit.credited</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"storecredit.credited\",\n  \"payload\": {\n    \"store_credit\": {\n      \"customer_name\": \"MI\",\n      \"customer_email\": \"mi@gmail.com\",\n      \"customer_id\": \"customer_e09d0e65c9612b26c7\",\n      \"card_number\": \"HNV1NK-MFZF\",\n      \"balance\": \"20.00\",\n      \"card_id\": \"card_a0d21058dc4ca25fd2\",\n      \"last_transaction\": \"RELOAD\",\n      \"created_at\": \"2021-12-24T06:40:28.000Z\",\n      \"transaction\": {\n        \"transaction_id\": \"transaction_7c54945f2b06aa9b02\",\n        \"transaction_amount\": \"20.0\",\n        \"transaction_type\": \"RELOAD\",\n        \"transaction_date\": \"2021-12-24T06:40:32.000Z\",\n        \"client_order_id\": null,\n        \"note\": null\n      }\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>storecredit.debited</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"storecredit.debited\",\n  \"payload\": {\n    \"store_credit\": {\n      \"customer_name\": \"MI\",\n      \"customer_email\": \"mi@gmail.com\",\n      \"customer_id\": \"customer_e09d0e65c9612b26c7\",\n      \"card_number\": \"HNV1NK-MFZF\",\n      \"balance\": \"10.00\",\n      \"card_id\": \"card_a0d21058dc4ca25fd2\",\n      \"last_transaction\": \"REDEMPTION\",\n      \"created_at\": \"2021-12-24T06:40:28.000Z\",\n      \"transaction\": {\n        \"transaction_id\": \"transaction_92d72f3ca51a2917e1\",\n        \"transaction_amount\": \"10.0\",\n        \"transaction_type\": \"REDEMPTION\",\n        \"transaction_date\": \"2021-12-24T06:44:23.000Z\",\n        \"client_order_id\": null,\n        \"note\": null\n      }\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>loyalty_point.created</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"loyalty_point.created\",\n  \"payload\": {\n    \"loyalty_card\": {\n      \"customer_name\": \"\",\n      \"customer_email\": \"mi@gmail.com\",\n      \"customer_id\": \"customer_e09d0e65c9612b26c7\",\n      \"card_number\": \"DBZ6E-ILDSE-MYVQY-M\",\n      \"currency\": \"$\",\n      \"balance\": 0,\n      \"card_id\": \"card_7d1333f1c87b01e84c\",\n      \"last_transaction\": \"CREATION\",\n      \"created_at\": \"2021-12-24T09:51:00.000Z\",\n      \"transaction\": {\n        \"transaction_id\": \"transaction_cb7619a9fa27f0e7aa\",\n        \"transaction_amount\": \"0.0\",\n        \"transaction_type\": \"CREATION\",\n        \"transaction_date\": \"2021-12-24T09:51:01.000Z\",\n        \"client_order_id\": null,\n        \"note\": null\n      }\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>loyalty_point.credited</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"loyalty_point.credited\",\n  \"payload\": {\n    \"loyalty_card\": {\n      \"customer_name\": \"MI\",\n      \"customer_email\": \"mi@gmail.com\",\n      \"customer_id\": \"customer_e09d0e65c9612b26c7\",\n      \"card_number\": \"DBZ6E-ILDSE-MYVQY-M\",\n      \"currency\": \"$\",\n      \"balance\": \"20.0\",\n      \"card_id\": \"card_7d1333f1c87b01e84c\",\n      \"last_transaction\": \"RELOAD\",\n      \"created_at\": \"2021-12-24T06:14:13.000Z\",\n      \"transaction\": {\n        \"transaction_id\": \"transaction_25d36ee10b6e45befe\",\n        \"transaction_amount\": \"20.0\",\n        \"transaction_type\": \"RELOAD\",\n        \"transaction_date\": \"2021-12-24T06:14:18.000Z\",\n        \"client_order_id\": null,\n        \"note\": null\n      }\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>loyalty_point.debited</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"loyalty_point.debited\",\n  \"payload\": {\n    \"loyalty_card\": {\n      \"customer_name\": \"MI\",\n      \"customer_email\": \"mi@gmail.com\",\n      \"customer_id\": \"customer_e09d0e65c9612b26c7\",\n      \"card_number\": \"DBZ6E-ILDSE-MYVQY-M\",\n      \"currency\": \"$\",\n      \"balance\": \"10.0\",\n      \"card_id\": \"card_7d1333f1c87b01e84c\",\n      \"last_transaction\": \"REDEMPTION\",\n      \"created_at\": \"2021-12-24T06:14:13.000Z\",\n      \"transaction\": {\n        \"transaction_id\": \"transaction_6f333f6dd3700c09e6\",\n        \"transaction_amount\": \"10.0\",\n        \"transaction_type\": \"REDEMPTION\",\n        \"transaction_date\": \"2021-12-24T06:22:25.000Z\",\n        \"client_order_id\": null,\n        \"note\": null\n      }\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>coupon.created</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"coupon.created\",\n  \"payload\": {\n    \"coupon\":{\n      \"code\":\"HB42VQLEBQ\",\n      \"coupon_id\":\"coupon_afb9ebaaf7c4a0dff8\",\n      \"active\":true,\n      \"batch_id\":\"batch_5aa0553d3d789851c6\",\n      \"redemption_count\":0,\n      \"expiration_date\":nil,\n      \"created_at\":Thu, 23 Sep 2021 09:06:17.000000000 UTC +00:00\n    },\n    \"customer\":{\n      \"name\":\"John\", \n      \"email\":\"test@doboz.in\", \n      \"customer_id\":\"user_2213f13d718a06f2b5\"\n    },\n    \"transaction\":{\n      \"reference_no\":\"coupon_transaction_8da87703285633ba10\", \n      \"transaction_source\":nil, \n      \"client_order_id\":nil, \n      \"transaction_type\":\"CREATED\"\n    },\n    \"coupon_rule\":{\n      \"title\":\"Coupon1\",\n      \"coupon_rule_id\":nil,\n      \"coupon_type\":\"FIXED\",\n      \"value\":40,\n      \"active\":true,\n      \"coupon_length\":10,\n      \"disallowed_characters\":nil,\n      \"prefix\":nil,\n      \"suffix\":nil,\n      \"end_date\":\"2022-01-22T00:00:00.000Z\",\n      \"start_date\":\"2021-09-23T18:30:00.000Z\",\n      \"coupon_expiration_period\":nil,\n      \"product_ids\":nil,\n      \"category_ids\":nil,\n      \"min_subtotal\":nil,\n      \"min_quantity\":nil,\n      \"max_usage\":10,\n      \"max_usage_per_customer\":10,\n      \"created_at\":Thu, 23 Sep 2021 09:06:17.000000000 UTC +00:00,\n      \"excluded_product_ids\":nil,\n      \"individual_use\":0,\n      \"limit_usage_to_per_item\":nil,\n      \"excluded_product_categories\":nil,\n      \"exclude_sale_items\":0,\n      \"max_subtotal\":0\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>coupon.updated</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"coupon.updated\",\n  \"payload\": {\n    \"coupon\":{\n      \"code\":\"HB42VQLEBQ\",\n      \"coupon_id\":\"coupon_afb9ebaaf7c4a0dff8\",\n      \"active\":true,\n      \"batch_id\":\"batch_5aa0553d3d789851c6\",\n      \"redemption_count\":0,\n      \"expiration_date\":nil,\n      \"created_at\":Thu, 23 Sep 2021 09:06:17.000000000 UTC +00:00\n    },\n    \"customer\":{\n      \"name\":\"John\", \n      \"email\":\"test@doboz.in\", \n      \"customer_id\":\"user_2213f13d718a06f2b5\"\n    },\n    \"transaction\":{\n      \"reference_no\":\"coupon_transaction_8da87703285633ba10\", \n      \"transaction_source\":nil, \n      \"client_order_id\":nil, \n      \"transaction_type\":\"CREATED\"\n    },\n    \"coupon_rule\":{\n      \"title\":\"Coupon1\",\n      \"coupon_rule_id\":nil,\n      \"coupon_type\":\"FIXED\",\n      \"value\":40,\n      \"active\":true,\n      \"coupon_length\":10,\n      \"disallowed_characters\":nil,\n      \"prefix\":nil,\n      \"suffix\":nil,\n      \"end_date\":\"2022-01-22T00:00:00.000Z\",\n      \"start_date\":\"2021-09-23T18:30:00.000Z\",\n      \"coupon_expiration_period\":nil,\n      \"product_ids\":nil,\n      \"category_ids\":nil,\n      \"min_subtotal\":nil,\n      \"min_quantity\":nil,\n      \"max_usage\":10,\n      \"max_usage_per_customer\":10,\n      \"created_at\":Thu, 23 Sep 2021 09:06:17.000000000 UTC +00:00,\n      \"excluded_product_ids\":nil,\n      \"individual_use\":0,\n      \"limit_usage_to_per_item\":nil,\n      \"excluded_product_categories\":nil,\n      \"exclude_sale_items\":0,\n      \"max_subtotal\":0\n    }\n  }\n}\n\n</code></pre><hr />\n<p><strong><code>coupon.redeemed</code></strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"event\": \"coupon.redeemed\",  \n  \"payload\":{\n    \"coupon\":{\n      \"code\":\"HB42VQLEBQ\",\n       \"coupon_id\":\"coupon_afb9ebaaf7c4a0dff8\",\n       \"active\":true,\n       \"batch_id\":\"batch_5aa0553d3d789851c6\",\n       \"redemption_count\":1,\n       \"expiration_date\":nil,\n       \"created_at\":Thu, 23 Sep 2021 09:06:17.000000000 UTC +00:00\n      },\n    \"customer\":{\n      \"name\":\"John\", \n      \"email\":\"gaurav@doboz.in\", \n      \"customer_id\":\"user_2213f13d718a06f2b5\"\n      },\n    \"transaction\":{\n      \"reference_no\":\"coupon_transaction_f1f99c42b9c7932620\",\n       \"transaction_source\":\"API\",\n       \"client_order_id\":nil,\n       \"transaction_type\":\"REDEEMED\"\n      },\n    \"coupon_rule\":{\n      \"title\":\"Coupon1\",\n      \"coupon_rule_id\":nil,\n      \"coupon_type\":\"FIXED\",\n      \"value\":40,\n      \"active\":true,\n      \"coupon_length\":10,\n      \"disallowed_characters\":nil,\n      \"prefix\":nil,\n      \"suffix\":nil,\n      \"end_date\":\"2022-01-22T00:00:00.000Z\",\n      \"start_date\":\"2021-09-23T18:30:00.000Z\",\n      \"coupon_expiration_period\":nil,\n      \"product_ids\":nil,\n      \"category_ids\":nil,\n      \"min_subtotal\":nil,\n      \"min_quantity\":nil,\n      \"max_usage\":10,\n      \"max_usage_per_customer\":10,\n      \"created_at\":Thu, 23 Sep 2021 09:06:17.000000000 UTC +00:00,\n      \"excluded_product_ids\":nil,\n      \"individual_use\":0,\n      \"limit_usage_to_per_item\":nil,\n      \"excluded_product_categories\":nil,\n      \"exclude_sale_items\":0,\n      \"max_subtotal\":0\n    }\n  }\n}\n\n</code></pre><h1 id=\"verify-a-webhook\">Verify a webhook:</h1>\n<p>Webhooks can be verified by calculating a digital signature. Each webhook request includes a <code>X-99minds-Signature</code> header, which is generated using the webhook's signing secret along with the data sent in the request.</p>\n<p>To verify that the request came from 99minds, compute the signature according to the following algorithm and compare it to the value in the <code>X-99minds-Signature</code> header. If they match, then you can be sure that the webhook was sent from 99minds. As a best practice, the signature should be verified before the app responds to the webhook.</p>\n<ol>\n<li><p>HMAC digest with SHA256 algorithm.</p>\n</li>\n<li><p>Use webhook's signing secret as a key to HMAC.</p>\n</li>\n<li><p><a href=\"https://tools.ietf.org/html/rfc4648#section-4\">Base64</a> strict encoding.</p>\n</li>\n<li><p>Use raw body as the message/data.</p>\n</li>\n</ol>\n<p>Here are few examples in various languages:</p>\n<h4 id=\"ruby\">Ruby</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>require 'rubygems'\nrequire 'base64'\nrequire 'openssl'\nrequire 'sinatra'\nrequire 'active_support/security_utils'\nSIGNING_SECRET = 'my_shared_secret'\nhelpers do\n  def verify_webhook(data, hmac_header)\n    digest = OpenSSL::Digest.new(\"sha256\")\n    calculated_hmac = Base64.strict_encode64(OpenSSL::HMAC.digest(digest, SIGNING_SECRET, data))\n    ActiveSupport::SecurityUtils.secure_compare(calculated_hmac, hmac_header)\n  end\nend\npost '/' do\n  data = request.body.read\n  verified = verify_webhook(data, env[\"HTTP_X_99MINDS_SIGNATURE\"])\n  puts \"Webhook verified: #{verified}\"\nend\n\n</code></pre><h4 id=\"php\">PHP</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>define('SIGNING_SECRET', 'my_shared_secret');\nfunction verify_webhook($data, $hmac_header)\n{\n  $calculated_hmac = base64_encode(hash_hmac('sha256', $data, SIGNING_SECRET, true));\n  return hash_equals($hmac_header, $calculated_hmac);\n}\n$hmac_header = $_SERVER['HTTP_X_99MINDS_SIGNATURE'];\n$data = file_get_contents('php://input');\n$verified = verify_webhook($data, $hmac_header);\nerror_log('Webhook verified: '.var_export($verified, true)); //check error.log to see the result\n?&gt;\n\n</code></pre><h4 id=\"python\">Python</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>from flask import Flask, request, abort\nimport hmac\nimport hashlib\nimport base64\napp = Flask(__name__)\nSIGNING_SECRET = 'hush'\ndef verify_webhook(data, hmac_header):\n    digest = hmac.new(SIGNING_SECRET, data.encode('utf-8'), hashlib.sha256).digest()\n    computed_hmac = base64.b64encode(digest)\n    return hmac.compare_digest(computed_hmac, hmac_header.encode('utf-8'))\n@app.route('/webhook', methods=['POST'])\ndef handle_webhook():\n    data = request.get_data()\n    verified = verify_webhook(data, request.headers.get('X-99minds-Signature'))\n    if not verified:\n        abort(401)\n    # process webhook payload\n    # ...\n    return ('Webhook verified', 200)\n\n</code></pre>","_postman_id":"4e7a906f-09fe-4863-9613-c09475a54b39","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]},"isInherited":true,"source":{"_postman_id":"4802a0e5-767b-428f-a28f-b41289d67163","id":"4802a0e5-767b-428f-a28f-b41289d67163","name":"99minds APIs","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<Your API Key Here>"}]}},"event":[{"listen":"prerequest","script":{"id":"e9fa470d-768c-43ff-bdaf-e683373c8b1b","type":"text/javascript","requests":{},"exec":[""]}},{"listen":"test","script":{"id":"ad9ea4a1-3de5-4fed-bc7e-5e12eedc6154","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"BASE_URL","value":"https://api.giftcard.99minds.io"},{"key":"API_KEY","value":"<Your API Key Here>"}]}