{"info":{"_postman_id":"a96072b2-5021-45fb-ae3f-2a4c4c1cc9f4","name":"ConnectedYou API","description":"<html><head></head><body><p>This is ConnectedYou's IoT Orchestration Hub (IOH) APIs. The ConnectedYou API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON request bodies, returns JSON responses, and uses standard HTTP response codes, authentication, and verbs.</p>\n<h1 id=\"api-endpoint\"><strong>API endpoint</strong></h1>\n<p>Hostname: api.connectedyou.io</p>\n<p>Protocol: https</p>\n<p>Content-Type: application/json</p>\n<h1 id=\"sorting-and-filtering\">Sorting and Filtering</h1>\n<p>The APIs support sorting and filtering on most parameters listed in n the documentation below.</p>\n<h1 id=\"pagination\">Pagination</h1>\n<p>The API's which return a list of records support pagination using a limit and offset approach. The total number of records is also returned on each request, so that client code can skip to the end or page backwards as may be needed. The default limit value 50, which sets the page size.</p>\n<p>For example</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"profiles\": [\n        ...\n    ],\n    \"limit\": 10,\n    \"offset\": 0,\n    \"total\": 1\n}\n\n</code></pre>\n<h1 id=\"rate-limiting\">Rate Limiting</h1>\n<p>To protect our platform and ensure consistent performance, ConnectedYou enforces rate limits on production APIs.</p>\n<p><strong>Response Example:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"detail\": \"Rate limit exceeded\",\n    \"wait_seconds\": 1\n}\n\n</code></pre>\n<h1 id=\"http-response-status-codes\">HTTP Response Status Codes</h1>\n<p>The API's are REST/JSON and therefore make use of HTTP status code in responses.</p>\n<h3 id=\"success-responses\">Success Responses</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Response Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200 OK</td>\n<td>Request completed succesfully</td>\n</tr>\n<tr>\n<td>201 Created</td>\n<td>Request completed succesfully and resulted in the creation of a new record. e.g. a user is added</td>\n</tr>\n<tr>\n<td>202 Accepted</td>\n<td>Request is accepted for further processing asynchronously</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"client-error-responses\">Client Error Responses</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Response Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400 Bad Request</td>\n<td>A client request is not correct. Likely incorrect formatting or URL.</td>\n</tr>\n<tr>\n<td>401 Unauthorized</td>\n<td>The client request did not pass authorization checks. This could be incorrect credentials, or incorrect account or URL.</td>\n</tr>\n<tr>\n<td>403 Forbidden</td>\n<td>The client request did not pass authentication checks. It could be an expired token, or excessive authentication, or an invalid client IP or server URL.</td>\n</tr>\n<tr>\n<td>404 Not Found</td>\n<td>The client request did not match a valid URL. The URL is incorrect. Note: This is also returned if the client credentials are not valid for a specific account number in the URL.</td>\n</tr>\n<tr>\n<td>405 Method Not Allowed</td>\n<td>When an incorrect HTTP Method is used to send a request to a particular URL. e.g. a GET method is used when a POST method is expected.</td>\n</tr>\n<tr>\n<td>413 Payload Too Large</td>\n<td>The request entity (body) is larger than limits defined by server.</td>\n</tr>\n<tr>\n<td>415 Unsupported Media Type</td>\n<td>The request uses the incorrect content type (e.g. application/xml is sent instead of application/json)</td>\n</tr>\n<tr>\n<td>422 Unprocessable Entity</td>\n<td>The request parameters can not be processed</td>\n</tr>\n<tr>\n<td>429 Too Many Requests</td>\n<td>The client is exceeding the Rate Limits for the API.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"server-error-responses\">Server Error Responses</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Response Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>500 Internal Server Error</td>\n<td>The server failed to succesfully complete the request. This is not expected.</td>\n</tr>\n<tr>\n<td>503 Service Unavailable</td>\n<td>Temporary unavailability of the service</td>\n</tr>\n<tr>\n<td>504 Gateway Timeout</td>\n<td>The server is taking too long to complete a request and it has timed out.</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":"API endpoint","slug":"api-endpoint"},{"content":"Sorting and Filtering","slug":"sorting-and-filtering"},{"content":"Pagination","slug":"pagination"},{"content":"Rate Limiting","slug":"rate-limiting"},{"content":"HTTP Response Status Codes","slug":"http-response-status-codes"}],"owner":"11771724","collectionId":"a96072b2-5021-45fb-ae3f-2a4c4c1cc9f4","publishedId":"2s93m4WMjh","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"F55e61"},"publishDate":"2023-05-26T11:40:56.000Z"},"item":[{"name":"Authentication","item":[{"name":"Authenticate","event":[{"listen":"test","script":{"id":"3c5e20d8-56e2-4788-aa79-b54933983055","exec":["let jsonData = pm.response.json();\r","console.log(jsonData);\r","pm.environment.set(\"Authorization\", jsonData.access_token);\r","pm.collectionVariables.set(\"Authorization\", jsonData.access_token);\r","\r",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ae1c3e54-5d16-4722-8813-d43a4c32a25d","exec":[""],"type":"text/javascript"}}],"id":"b691cc99-b930-40ac-8957-1f391bdd7b3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"username\": \"user@connectedyou.io\",\r\n    \"password\": \"UserPassword\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/auth/token","description":"<p>API to authenticate and obtain JWT tokens.</p>\n<p>This API will return both an access token and refresh token.</p>\n<p>The access token should be sent in the Authorization header on subsequent requests.</p>\n<p>The access_token expires after 1 hour.</p>\n","urlObject":{"protocol":"https","path":["auth","token"],"host":["api","connectedyou","io"],"query":[],"variable":[]}},"response":[{"id":"a823e3da-6f66-45c0-8cf7-78866b4be572","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"username\": \"user@connectedyou.io\",\r\n    \"password\": \"UserPassword\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2835"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 23 May 2023 11:30:01 GMT"},{"key":"x-amzn-RequestId","value":"80a204ff-9c3f-456b-95a8-a7746b144a60"},{"key":"x-amz-apigw-id","value":"FX6E5EQ1joEFiSw="},{"key":"X-Amzn-Trace-Id","value":"Root=1-646ca3b8-4c1a417c5f1d0cf4681adaae;Sampled=0;lineage=3218b0d6:0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9394dfff2c95d42a370c89736cba98ee.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P2"},{"key":"X-Amz-Cf-Id","value":"1kvRDO2ciWhg2xhQV72RixmfCS609vj7cMJxsvGfZPn1tiOZZxlLHA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"expires_in\": 3600,\n    \"access_token\": \"xyz......\",\n    \"refresh_token\": \"xyz.......\"\n}"},{"id":"35489e6e-3494-429e-8dd6-a19f5955e639","name":"Failure - Invalid Credentials","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"username\": \"xyz\",\r\n    \"password\": \"xyz\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"73"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 23 May 2023 11:31:26 GMT"},{"key":"x-amzn-RequestId","value":"4d6e81c4-e926-4714-8ff8-98967fb91192"},{"key":"x-amz-apigw-id","value":"FX6STGSBDoEFopA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-646ca40e-5e883be130002cbf3b2e02c4;Sampled=0;lineage=3218b0d6:0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9394dfff2c95d42a370c89736cba98ee.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P2"},{"key":"X-Amz-Cf-Id","value":"ZeKwGGrxWwPAMxvWzReQYOKBDUAkzawZN_2ZHgR_q1OKXR6SJ5meKg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"failure\",\n    \"message\": \"The username or password is incorrect\"\n}"},{"id":"58538dbb-ad58-430b-8915-abdf7320e169","name":"Failure - Rate limit","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"username\": \"user@connectedyou.io\",\r\n    \"password\": \"UserPassword\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/auth/token"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"73"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 23 May 2023 11:31:26 GMT"},{"key":"x-amzn-RequestId","value":"4d6e81c4-e926-4714-8ff8-98967fb91192"},{"key":"x-amz-apigw-id","value":"FX6STGSBDoEFopA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-646ca40e-5e883be130002cbf3b2e02c4;Sampled=0;lineage=3218b0d6:0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9394dfff2c95d42a370c89736cba98ee.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P2"},{"key":"X-Amz-Cf-Id","value":"ZeKwGGrxWwPAMxvWzReQYOKBDUAkzawZN_2ZHgR_q1OKXR6SJ5meKg=="}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": \"Rate limit exceeded: please reuse the access_token for subsequent API requests until expiry.\"\n}"}],"_postman_id":"b691cc99-b930-40ac-8957-1f391bdd7b3a"},{"name":"Token refresh","id":"6c111300-5cd7-4900-bedc-3d0abda34cb3","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"username\": \"user@connectedyou.io\",\r\n    \"refresh_token\": \"eyJjdHkiOiJKV1QiLCJlbmMiOiJBMjU2R0NNIiwiYWxnIjoiUlNBLU9BRVAifQ\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/auth/token/refresh","description":"<p>API to obtain a fresh access token. Exchange the refresh token for a new access token before the refresh token expiry.</p>\n","urlObject":{"protocol":"https","path":["auth","token","refresh"],"host":["api","connectedyou","io"],"query":[],"variable":[]}},"response":[{"id":"f858b16f-22ce-463b-891b-eab537b7fc80","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"username\": \"user@connectedyou.io\",\r\n    \"refresh_token\": \"eyJjdHkiOiJKV1QiLCJlbmMiOiJBMjU2R0NNIiwiYWxnIjoiUlNBLU9BRVAif\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/auth/token/refresh"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1025"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 20 Apr 2023 08:46:40 GMT"},{"key":"x-amzn-RequestId","value":"7c78d0b3-a4cf-4c01-9216-d99c07bac746"},{"key":"x-amz-apigw-id","value":"DqxNhE9oDoEFw_g="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6440fbef-1ab4b3814c7774c97cdb3f0b;Sampled=0;lineage=3218b0d6:0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 676c1e5efc888625a4e69fae909fbcf6.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL51-P1"},{"key":"X-Amz-Cf-Id","value":"8XradABVDEjnrswDW4EjSihgddGV9RROOsro_1OWoki43W0MsZfyWg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"expires_in\": 3600,\n    \"access_token\": \"xyz......\"\n}"},{"id":"e2498e0f-c8f9-4268-a2a5-93c1e11bba00","name":"Failure - Invalid Credentials","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"username\": \"user@connectedyou.io\",\r\n    \"refresh_token\": \"eyJjdHkiOiJKV1QiLCJlbmMiOiJBMjU2R0NNIiwiYWxnIjoiUlNBLU9BRVAifQ\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/auth/token/refresh"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"73"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 23 May 2023 11:35:20 GMT"},{"key":"x-amzn-RequestId","value":"39391578-d1a0-42fd-bcdb-853775caf0b9"},{"key":"x-amz-apigw-id","value":"FX62zFxkjoEFttw="},{"key":"X-Amzn-Trace-Id","value":"Root=1-646ca4f8-5bb144226af74d296b7f03d8;Sampled=0;lineage=3218b0d6:0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9394dfff2c95d42a370c89736cba98ee.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P2"},{"key":"X-Amz-Cf-Id","value":"v-Iw1fQHs3ApQRUlh4UNVwpXnJ_iCNZVOvt8afDHi0A-zrSgyaA0DQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"failure\",\n    \"message\": \"The username or password is incorrect\"\n}"},{"id":"d7cb2fea-e092-4ea2-b232-c63376f5c3a3","name":"Failure - Rate limit","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"username\": \"user@connectedyou.io\",\r\n    \"password\": \"UserPassword\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/auth/refresh"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"73"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 23 May 2023 11:31:26 GMT"},{"key":"x-amzn-RequestId","value":"4d6e81c4-e926-4714-8ff8-98967fb91192"},{"key":"x-amz-apigw-id","value":"FX6STGSBDoEFopA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-646ca40e-5e883be130002cbf3b2e02c4;Sampled=0;lineage=3218b0d6:0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9394dfff2c95d42a370c89736cba98ee.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P2"},{"key":"X-Amz-Cf-Id","value":"ZeKwGGrxWwPAMxvWzReQYOKBDUAkzawZN_2ZHgR_q1OKXR6SJ5meKg=="}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": \"Rate limit exceeded: please reuse the access_token for subsequent API requests until expiry.\"\n}"}],"_postman_id":"6c111300-5cd7-4900-bedc-3d0abda34cb3"}],"id":"8f371f57-e578-4dd6-9773-09ebe3e369b7","description":"<p>Note: the Authentication API's are rate limited to protect our Identity Service from abuse.</p>\n","_postman_id":"8f371f57-e578-4dd6-9773-09ebe3e369b7"},{"name":"Users","item":[{"name":"List Users","id":"5b18d8e5-3479-4509-a835-20143c39ab22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/users","description":"<p>List users who have access to a given account.</p>\n","urlObject":{"path":["accounts","{{account_id}}","users"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"c9438a7c-acb8-48b4-92ac-33cc677ebd9f","name":"No user found Failure","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/23/users"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 May 2020 13:31:21 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.6.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"13"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": []\n}"},{"id":"95600389-1669-4292-800d-307fcdb7fa34","name":"Account users list success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/21/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 May 2020 10:31:23 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.6.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"OPTIONS, GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"340"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"id\": 29,\n            \"uuid\": \"804b5c48-0487-4dcb-b8d9-f12c877b9213\",\n            \"created_at\": \"2020-05-25T07:11:36.654247Z\",\n            \"email\": \"nitansh@connectedyou.io\",\n            \"firstname\": \"Nitansh\",\n            \"lastname\": \"Rai\",\n            \"vil_user_id\": \"1283y8123y98123981234\",\n            \"email_opt_in\": true,\n            \"is_active\": false,\n            \"updated_at\": \"2020-05-25T07:11:36.654503Z\",\n            \"accounts\": [\n                21\n            ]\n        }\n    ]\n}"}],"_postman_id":"5b18d8e5-3479-4509-a835-20143c39ab22"},{"name":"User Detail","id":"efd951b0-e913-4697-8523-2cb154d2737d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.connectedyou.io/v1/users","description":"<p>API to get the user detail, including a list of IOH accounts the user has role in.</p>\n","urlObject":{"path":["users"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"1ba016e4-dfcc-4171-82e1-b0b9cc3ae44d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.connectedyou.io/v1/users/{{user id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 11:21:09 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"19781"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"number\",\n    \"email\": \"string\",\n    \"firstname\": \"string\",\n    \"lastname\": \"string\",\n    \"created_at\": \"2021-05-04T12:04:43.788567Z\",\n    \"updated_at\": \"2021-09-02T01:57:36.949570Z\",\n    \"accounts\": [\n        {\n            \"id\": 489866660,\n            \"name\": \"string\",\n            \"term_cond_acceptance\": true,\n            \"term_cond_acceptance_date\": \"2021-10-25T05:46:00Z\",\n            \"bank_transfer_enabled\": false\n        },\n        {\n            \"id\": 489866661,\n            \"name\": \"string\",\n            \"term_cond_acceptance\": true,\n            \"term_cond_acceptance_date\": \"2020-12-22T09:37:00Z\",\n            \"bank_transfer_enabled\": false\n        },\n        {\n            \"id\": 489866662,\n            \"name\": \"string\",\n            \"term_cond_acceptance\": true,\n            \"term_cond_acceptance_date\": null,\n            \"bank_transfer_enabled\": false\n        },\n        {\n            \"id\": 489866663,\n            \"name\": \"string\",\n            \"term_cond_acceptance\": true,\n            \"term_cond_acceptance_date\": null,\n            \"bank_transfer_enabled\": false\n        },\n        {\n            \"id\": 489866664,\n            \"name\": \"string\",\n            \"term_cond_acceptance\": true,\n            \"term_cond_acceptance_date\": null,\n            \"bank_transfer_enabled\": false\n        }\n    ]\n}"}],"_postman_id":"efd951b0-e913-4697-8523-2cb154d2737d"}],"id":"2cc392c5-76b0-4248-850b-8d102da6b8f9","_postman_id":"2cc392c5-76b0-4248-850b-8d102da6b8f9","description":""},{"name":"Cards and SIM Profiles","item":[{"name":"List Cards (SIMs and eSIMS)","id":"6ff98d2e-f255-4b81-8f2d-10dd88bfe37f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards","description":"<p>Fetch a list of Cards (EIDs) of a specific account.</p>\n<p>Note: this API includes all Cards including non-eUICC Cards.</p>\n<p>Use the \"List eUICC Cards\" to list only the eUICC Cards of an account.</p>\n","urlObject":{"path":["accounts","{{account_id}}","cards"],"host":["https://api.connectedyou.io/v1"],"query":[{"disabled":true,"description":{"content":"<p>list cards up to 1000 at a time</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"key":"offset","value":"0"},{"disabled":true,"key":"eid","value":"xyz"},{"disabled":true,"description":{"content":"<p>sort on eid descending</p>\n","type":"text/plain"},"key":"sort","value":"-eid"},{"disabled":true,"description":{"content":"<p>choices: Standard Plugin, Industrial MFF2, Automotive MFF2</p>\n","type":"text/plain"},"key":"sim_type","value":"Standard Plugin"},{"disabled":true,"description":{"content":"<p>choices: Cloud, SAS, MNO SIM</p>\n","type":"text/plain"},"key":"rsp_platform","value":"Cloud"},{"disabled":true,"key":"imei_lock_enabled","value":"true"}],"variable":[]}},"response":[{"id":"c19e5f2f-d84a-4319-826e-6ceaa124a201","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","cards"],"query":[{"key":"limit","value":"20","disabled":true},{"key":"offset","value":"0","disabled":true},{"key":"eid","value":"xyz","type":"text","description":"filter on eid","disabled":true},{"key":"sort","value":"-eid","description":"eid","disabled":true},{"key":"imei_lock_enabled","value":"true","type":"text","description":"choices: true, false","disabled":true},{"key":"sim_type","value":"Standard Plugin","description":"filter on sim_type field \n(Standard Plugin/Industrial MFF2/Automotive MFF2)","disabled":true},{"key":"rsp_platform","value":"Cloud","description":"choices: Cloud, SAS, MNO SIM","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 11:03:33 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"965"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"cards\": [\n        {\n            \"account_id\": 500000000,\n            \"account_name\": \"string\",\n            \"eid\": \"string\",\n            \"imei_lock_enabled\": true,\n            \"imei_lock_type\": \"string\",\n            \"lock_imei\": \"string\",\n            \"network_imei\": \"string\",\n            \"number_of_profiles\": \"number\",\n            \"profiles\": [\n                {\n                    \"billing_status\": \"string\",\n                    \"bootstrap\": true,\n                    \"country_name\": \"string\",\n                    \"euicc_status\": \"string\",\n                    \"fallback\": true,\n                    \"iccid\": \"string\",\n                    \"imsi\": \"string\",\n                    \"last_billing_status_at\": \"2022-11-14T15:42:08.503300Z\",\n                    \"last_seen_at\": null,\n                    \"msisdn\": \"string\",\n                    \"network_operator_name\": \"string\",\n                    \"provider\": \"string\",\n                    \"provision_date\": \"2022-11-14T15:42:07.986622Z\",\n                    \"recommended_apn\": \"string\",\n                    \"sim_profile\": \"string\"\n                }\n            ],\n            \"rsp_platform\": \"string\",\n            \"sim_type\": \"string\",\n            \"tags\": [\n                {\n                    \"id\": 535,\n                    \"name\": \"test\"\n                }\n            ],\n            \"user_defined_imei\": \"string\"\n        }\n    ],\n    \"limit\": 1,\n    \"offset\": 0,\n    \"total\": 13631\n}"}],"_postman_id":"6ff98d2e-f255-4b81-8f2d-10dd88bfe37f"},{"name":"Card Detail","id":"52a6f6ce-3f65-49ab-a57e-6076aba0e004","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}","description":"<p>Retrieve detail of a specific Card by EID.</p>\n","urlObject":{"path":["accounts","{{account_id}}","cards","{{eid}}"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"5f649064-777e-4411-ba17-e5e1d890b6f5","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"843"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Sun, 16 Nov 2025 16:13:43 GMT"},{"key":"x-amzn-RequestId","value":"28e8de6f-c2a6-457f-9086-1c7d178a199a"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Allow","value":"GET, PATCH"},{"key":"X-Frame-Options","value":"DENY"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"connectedyou"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 ba5b3e5f05146fdad741cec2f268501e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MAA51-P1"},{"key":"X-Amz-Cf-Id","value":"HM2BTyDor94F-We55wMpCdOHSgo1xUFrk2Lq6mYL9VuRW3s9NNmeCw=="},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'none'"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"created_at\": \"2021-05-04T12:58:27.973109Z\",\n    \"eid\": \"89034011009210000000000000411032\",\n    \"imei_lock_enabled\": false,\n    \"imei_lock_type\": \"None\",\n    \"lock_imei\": null,\n    \"network_imei\": \"351076495320181\",\n    \"number_of_profiles\": 3,\n    \"rsp_platform\": \"Cloud\",\n    \"sim_type\": \"Standard Plugin\",\n    \"tags\": [\n        {\n            \"id\": 1795,\n            \"name\": \"Ianni\"\n        }\n    ],\n    \"updated_at\": \"2025-11-14T17:19:52.389293Z\",\n    \"user_defined_imei\": null,\n    \"ha_configured\": false,\n    \"billing_status\": \"ACTIVE\",\n    \"country_name\": \"United Kingdom\",\n    \"iccid\": \"8910300000001648996\",\n    \"imsi\": \"295050998244499\",\n    \"last_billing_status_at\": \"2025-10-12T08:54:35.112083Z\",\n    \"last_seen_at\": \"2025-11-01T16:22:39.993000Z\",\n    \"msisdn\": null,\n    \"network_operator_name\": \"O2\",\n    \"provider\": \"TELNA\",\n    \"provision_date\": \"2023-02-15T04:49:23.892737Z\",\n    \"recommended_apn\": \"rainbow\",\n    \"sim_profile\": \"CYTL14\",\n    \"profile_type\": \"Soft Profile\"\n}"},{"id":"f7be061d-22e7-4e9a-b76e-e1f82699e54d","name":"Failure - Invalid EID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"28"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Sun, 16 Nov 2025 16:14:37 GMT"},{"key":"x-amzn-RequestId","value":"eff1ccde-7499-43b6-8cde-526114dab30d"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Allow","value":"GET, PATCH"},{"key":"X-Frame-Options","value":"DENY"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"connectedyou"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 ba5b3e5f05146fdad741cec2f268501e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MAA51-P1"},{"key":"X-Amz-Cf-Id","value":"MMBACdlq0-4C6zRAQznwWkvUBX2u3vlEkcVi32hRKgb6WNwlNtI8gg=="},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'none'"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Card not found.\"\n}"}],"_postman_id":"52a6f6ce-3f65-49ab-a57e-6076aba0e004"},{"name":"Card Profiles","id":"31064155-780d-43b9-8363-b9df0b983b7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}/profiles","description":"<p>Retrieve detail of the Profiles linked with specific Card by EID.</p>\n<p>This detail includes the lastest eUICC information of the Profiles on the card.</p>\n","urlObject":{"path":["accounts","{{account_id}}","cards","{{eid}}","profiles"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"766d9aa3-d403-4406-88ca-f9ebc7c98240","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}/profiles"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1720"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Sun, 16 Nov 2025 16:10:33 GMT"},{"key":"x-amzn-RequestId","value":"5fc3c489-01fe-443c-a568-ec3be8dd398b"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"connectedyou"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1b7edba95bede31db3b142ddef728c48.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MAA51-P1"},{"key":"X-Amz-Cf-Id","value":"3o0Y8dsy6VrFGvhlsaa-SzGG_PZ3QUKxGKUw3YRHAdsaAfobRo7pew=="},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'none'"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"profiles\": [\n        {\n            \"iccid\": \"8910300000001648996\",\n            \"billing_status\": \"ACTIVE\",\n            \"bootstrap\": false,\n            \"fallback\": true,\n            \"euicc_status\": \"ENABLED\",\n            \"imsi\": \"295050998244499\",\n            \"provider\": \"TELNA\",\n            \"sim_profile\": \"CYTL14\",\n            \"country_name\": \"United Kingdom\",\n            \"network_operator_name\": \"O2\",\n            \"recommended_apn\": \"rainbow\",\n            \"msisdn\": null,\n            \"provision_date\": \"2023-02-15T04:49:23.892737Z\",\n            \"last_seen_at\": \"2025-11-01T16:22:39.993000Z\",\n            \"last_billing_status_at\": \"2025-10-12T08:54:35.112083Z\",\n            \"rsp_platform\": \"Cloud\",\n            \"profile_type\": \"Soft Profile\",\n            \"account_id\": 180611141,\n            \"account_name\": \"2-CY India\",\n            \"eid\": \"89034011009210000000000000411032\",\n            \"imei\": \"351076495320181\",\n            \"mtd_kilobytes\": 17550,\n            \"card_enabled\": true,\n            \"mtd_sms_mt\": 0,\n            \"mtd_sms_mo\": 0,\n            \"mtd_voice_seconds_mt\": 0,\n            \"mtd_voice_seconds_mo\": 0,\n            \"tags\": [\n                {\n                    \"id\": 12505,\n                    \"name\": \"RV\"\n                },\n                {\n                    \"id\": 18,\n                    \"name\": \"Ianni's\"\n                }\n            ],\n            \"sim_type\": \"Standard Plugin\"\n        },\n        {\n            \"iccid\": \"8910300000004819860\",\n            \"billing_status\": \"SUSPENDED\",\n            \"bootstrap\": false,\n            \"fallback\": false,\n            \"euicc_status\": \"DISABLED\",\n            \"imsi\": \"454006330075432\",\n            \"provider\": \"TELNA\",\n            \"sim_profile\": \"CYTL26\",\n            \"country_name\": null,\n            \"network_operator_name\": null,\n            \"recommended_apn\": \"rainbow\",\n            \"msisdn\": null,\n            \"provision_date\": \"2023-12-21T11:27:53.321979Z\",\n            \"last_seen_at\": null,\n            \"last_billing_status_at\": \"2025-08-26T14:51:56.375043Z\",\n            \"rsp_platform\": \"Cloud\",\n            \"profile_type\": \"Soft Profile\",\n            \"account_id\": 180611141,\n            \"account_name\": \"2-CY India\",\n            \"eid\": \"89034011009210000000000000411032\",\n            \"imei\": \"351076495320181\",\n            \"mtd_kilobytes\": 0,\n            \"card_enabled\": true,\n            \"mtd_sms_mt\": 0,\n            \"mtd_sms_mo\": 0,\n            \"mtd_voice_seconds_mt\": 0,\n            \"mtd_voice_seconds_mo\": 0,\n            \"tags\": [],\n            \"sim_type\": \"Standard Plugin\"\n        }\n    ],\n    \"limit\": 50,\n    \"offset\": 0,\n    \"total\": 2\n}"},{"id":"d1639194-8a8f-4825-b4fb-c92d890491a2","name":"Failure - Invalid EID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}/profiles"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"30"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Sun, 16 Nov 2025 16:11:23 GMT"},{"key":"x-amzn-RequestId","value":"bcb4de68-88f1-405d-adb1-df889a01b97a"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"connectedyou"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 1b7edba95bede31db3b142ddef728c48.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MAA51-P1"},{"key":"X-Amz-Cf-Id","value":"zDPu0n6S_LWTKwD7QSqMslG3Z_e2eMhwPjIAuM3r2v64zknHdzRnqA=="},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'none'"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Record Not found.\"\n}"}],"_postman_id":"31064155-780d-43b9-8363-b9df0b983b7d"},{"name":"List SIM Profiles","id":"0eb69303-8f70-4091-8c19-638c09a92b9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles","description":"<p>List the SIM Profiles for a specific account.</p>\n","urlObject":{"path":["accounts","{{account_id}}","profiles"],"host":["https://api.connectedyou.io/v1"],"query":[{"disabled":true,"description":{"content":"<p>filter on eid</p>\n","type":"text/plain"},"key":"eid","value":"xyz"},{"disabled":true,"description":{"content":"<p>filter on iccid</p>\n","type":"text/plain"},"key":"iccid","value":"xyz"},{"disabled":true,"description":{"content":"<p>filter on cournty field</p>\n","type":"text/plain"},"key":"country_name","value":"United"},{"disabled":true,"description":{"content":"<p>filter on account_id</p>\n","type":"text/plain"},"key":"account_id","value":"xyz"},{"disabled":true,"description":{"content":"<p>filter on account_name</p>\n","type":"text/plain"},"key":"account_name","value":"xyz"},{"disabled":true,"description":{"content":"<p>filter on network_operator_name</p>\n","type":"text/plain"},"key":"network_operator_name","value":"xyz"},{"disabled":true,"description":{"content":"<p>choices: READY, ACTIVE, SUSPENDED, TERMINATED</p>\n","type":"text/plain"},"key":"billing_status","value":"READY"},{"disabled":true,"description":{"content":"<p>choices: ENABLED, DISABLED</p>\n","type":"text/plain"},"key":"euicc_status","value":"ENABLED"},{"disabled":true,"description":{"content":"<p>choices: Standard Plugin, Industrial MFF2, Automotive MFF2</p>\n","type":"text/plain"},"key":"sim_type","value":"Standard Plugin"},{"disabled":true,"description":{"content":"<p>choices: Cloud, SAS, MNO SIM, Consumer</p>\n","type":"text/plain"},"key":"rsp_platform","value":"Cloud"},{"disabled":true,"description":{"content":"<p>iccid (for desc order use \"-\" as prefix with the value)</p>\n","type":"text/plain"},"key":"sort","value":"xyz"},{"disabled":true,"description":{"content":"<p>limit the number of fetched records</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>specifying where to start a page</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>Bootstrap or Soft Profile or N/A</p>\n","type":"text/plain"},"key":"profile_type","value":"Bootstrap"}],"variable":[]}},"response":[{"id":"95d720e1-b90c-40e6-8487-e25b788c00fb","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","profiles"],"query":[{"key":"eid","value":"xyz","description":"filter on eid","disabled":true},{"key":"iccid","value":"xyz","description":"filter on iccid","type":"text","disabled":true},{"key":"country_name","value":"United","description":"filter on cournty field","disabled":true},{"key":"account_id","value":"xyz","description":"filter on account_id","type":"text","disabled":true},{"key":"account_name","value":"xyz","description":"filter on account_name","disabled":true},{"key":"network_operator_name","value":"xyz","description":"filter on network_operator_name","disabled":true},{"key":"billing_status","value":"READY","description":"choices: READY, ACTIVE, SUSPENDED, TERMINATED","type":"text","disabled":true},{"key":"euicc_status","value":"ENABLED","description":"choices: ENABLED, DISABLED","type":"text","disabled":true},{"key":"sim_type","value":"Standard Plugin","description":"choices: Standard Plugin, Industrial MFF2, Automotive MFF2","type":"text","disabled":true},{"key":"rsp_platform","value":"Cloud","description":"choices: Cloud, SAS, MNO SIM, Consumer","type":"text","disabled":true},{"key":"sort","value":"xyz","description":"iccid (for desc order use \"-\" as prefix with the value)","disabled":true},{"key":"limit","value":"10","description":"limit the number of fetched records","disabled":true},{"key":"offset","value":"0","description":"specifying where to start a page","type":"text","disabled":true},{"key":"profile_type","value":"Bootstrap","description":"Bootstrap or Soft Profile or N/A","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"43979"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 08 Apr 2026 10:31:18 GMT"},{"key":"x-amzn-RequestId","value":"aa72832c-0d42-45dd-aa1e-1771fcde6540"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"connectedyou"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4f394bb2485ab8cd24ff0ea2fe25855e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BLR50-P4"},{"key":"X-Amz-Cf-Id","value":"RkzR3ySP2cqtMYRhAaMobhDZBxCcXA_vG6Lnqg3zjhoxN5EwFRZiyw=="},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'none'"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"profiles\": [\n        {\n            \"iccid\": \"8910300000003073104\",\n            \"billing_status\": \"ACTIVE\",\n            \"bootstrap\": true,\n            \"fallback\": true,\n            \"euicc_status\": \"ENABLED\",\n            \"imsi\": \"234104099255189\",\n            \"provider\": \"TELNA\",\n            \"sim_profile\": \"CYTL22\",\n            \"country_name\": \"India\",\n            \"network_operator_name\": \"Airtel, Punjab\",\n            \"recommended_apn\": \"rainbow\",\n            \"msisdn\": null,\n            \"provision_date\": \"2023-12-21T11:27:44.004307Z\",\n            \"last_seen_at\": \"2026-04-07T21:18:37.435000Z\",\n            \"last_billing_status_at\": \"2026-03-06T04:08:55.236559Z\",\n            \"rsp_platform\": \"Cloud\",\n            \"profile_type\": \"Bootstrap\",\n            \"activated_at\": \"2024-01-28T04:17:11.594672Z\",\n            \"account_id\": 180611141,\n            \"account_name\": \"2-CY India\",\n            \"eid\": \"89034011014230000000000016066252\",\n            \"imei\": \"00000000000000\",\n            \"mtd_kilobytes\": 3803,\n            \"card_enabled\": true,\n            \"mtd_sms_mt\": 6,\n            \"mtd_sms_mo\": 0,\n            \"mtd_voice_seconds_mt\": 0,\n            \"mtd_voice_seconds_mo\": 0,\n            \"tags\": [\n                {\n                    \"id\": 1411,\n                    \"name\": \"Mark\"\n                },\n                {\n                    \"id\": 13153,\n                    \"name\": \"Global\"\n                }\n            ],\n            \"sim_type\": \"Standard Plugin\"\n        },\n        {\n            \"iccid\": \"8910300000005979141\",\n            \"billing_status\": \"SUSPENDED\",\n            \"bootstrap\": true,\n            \"fallback\": true,\n            \"euicc_status\": \"DISABLED\",\n            \"imsi\": \"295050998595540\",\n            \"provider\": \"TELNA\",\n            \"sim_profile\": \"CYTL14\",\n            \"country_name\": \"India\",\n            \"network_operator_name\": \"Vi\",\n            \"recommended_apn\": \"rainbow\",\n            \"msisdn\": null,\n            \"provision_date\": \"2023-12-21T11:27:53.283721Z\",\n            \"last_seen_at\": \"2026-04-06T08:07:11.161000Z\",\n            \"last_billing_status_at\": \"2026-01-23T10:23:09.382084Z\",\n            \"rsp_platform\": \"SAS\",\n            \"profile_type\": \"Bootstrap\",\n            \"activated_at\": \"2023-12-21T11:27:53.359925Z\",\n            \"account_id\": 180611141,\n            \"account_name\": \"2-CY India\",\n            \"eid\": \"89034011014230000000000015864589\",\n            \"imei\": \"###################\",\n            \"mtd_kilobytes\": 0,\n            \"card_enabled\": false,\n            \"mtd_sms_mt\": 1,\n            \"mtd_sms_mo\": 0,\n            \"mtd_voice_seconds_mt\": 0,\n            \"mtd_voice_seconds_mo\": 0,\n            \"tags\": [\n                {\n                    \"id\": 1411,\n                    \"name\": \"Jesus\"\n                },\n                {\n                    \"id\": 13153,\n                    \"name\": \"Global\"\n                }\n            ],\n            \"sim_type\": \"Standard Plugin\"\n        }\n    ],\n    \"limit\": 50,\n    \"offset\": 0,\n    \"total\": 302\n}"},{"id":"acd733e4-dd06-4424-b2be-12061d63dec2","name":"Failure - if account id doesn't belong to the user","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","profiles"],"query":[{"key":"eid","value":"xyz","description":"filter on eid","disabled":true},{"key":"iccid","value":"xyz","description":"filter on iccid","type":"text","disabled":true},{"key":"country_name","value":"United","description":"filter on cournty field","disabled":true},{"key":"account_id","value":"xyz","description":"filter on account_id","type":"text","disabled":true},{"key":"account_name","value":"xyz","description":"filter on account_name","disabled":true},{"key":"network_operator_name","value":"xyz","description":"filter on network_operator_name","disabled":true},{"key":"billing_status","value":"READY","description":"choices: READY, ACTIVE, SUSPENDED, TERMINATED","type":"text","disabled":true},{"key":"euicc_status","value":"ENABLED","description":"choices: ENABLED, DISABLED","type":"text","disabled":true},{"key":"sort","value":"xyz","description":"iccid (for desc order use \"-\" as prefix with the value)","disabled":true},{"key":"limit","value":"10","description":"limit the number of fetched records","disabled":true},{"key":"offset","value":"0","description":"specifying where to start a page","type":"text","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"63"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 25 May 2023 17:38:15 GMT"},{"key":"x-amzn-RequestId","value":"85b3252d-bcbf-4c3c-971d-8aa29ee280fa"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Allow","value":"GET"},{"key":"x-amzn-Remapped-Content-Length","value":"63"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"FfV5PHdbDoEFhlA="},{"key":"x-amzn-Remapped-Server","value":"WSGIServer/0.2 CPython/3.10.11"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"x-amzn-Remapped-Date","value":"Thu, 25 May 2023 17:38:15 GMT"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 31f935d89d465af2fa9a12b8efe8f8fc.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL51-P1"},{"key":"X-Amz-Cf-Id","value":"b0XzKqlUxrPy46iaYKV7qWLhU8CUa7InCuCYcQA-wfCH9w-BxHyAKA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"You do not have permission to perform this action.\"\n}"}],"_postman_id":"0eb69303-8f70-4091-8c19-638c09a92b9e"},{"name":"SIM Profile Detail","id":"60ef5bd4-f5dd-420d-ba46-fbfd69696f6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}","description":"<p>Retrieve detail of a specific SIM Profile by ICCID.</p>\n","urlObject":{"path":["accounts","{{account_id}}","profiles","{{iccid}}"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"aab90832-a39c-42bb-925d-91b0b6db7bad","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"812"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 08 Apr 2026 10:32:52 GMT"},{"key":"x-amzn-RequestId","value":"82ec6419-edc0-44b8-ad64-4c2c924e4a3c"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"connectedyou"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 e6a37c61d86d6e0bcdada5b6b948004c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BLR50-P4"},{"key":"X-Amz-Cf-Id","value":"VvOSI0Ixos-ldbUqyiYxsWOw2aS4d9eRz53IX8IkDr_zfTOkl_rAdw=="},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'none'"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"iccid\": \"8910300000001722112\",\n    \"billing_status\": \"TERMINATED\",\n    \"bootstrap\": false,\n    \"fallback\": false,\n    \"euicc_status\": \"DISABLED\",\n    \"imsi\": \"525053099236145D\",\n    \"provider\": \"TELNA\",\n    \"sim_profile\": \"CYTL10\",\n    \"country_name\": \"India\",\n    \"network_operator_name\": \"Airtel, Punjab\",\n    \"recommended_apn\": \"rainbow\",\n    \"msisdn\": null,\n    \"provision_date\": \"2024-02-05T12:54:26.055228Z\",\n    \"last_seen_at\": \"2024-02-05T14:25:49Z\",\n    \"last_billing_status_at\": \"2025-06-30T19:25:00.369931Z\",\n    \"rsp_platform\": \"Cloud\",\n    \"profile_type\": \"Soft Profile\",\n    \"activated_at\": \"2024-02-05T13:26:28.997631Z\",\n    \"account_id\": 180611141,\n    \"account_name\": \"2-CY India\",\n    \"eid\": null,\n    \"imei\": null,\n    \"mtd_kilobytes\": 0,\n    \"card_enabled\": false,\n    \"mtd_sms_mt\": 0,\n    \"mtd_sms_mo\": 0,\n    \"mtd_voice_seconds_mt\": 0,\n    \"mtd_voice_seconds_mo\": 0,\n    \"tags\": [],\n    \"sim_type\": null\n}"},{"id":"60ffceec-ee34-46f1-8ad6-09b53f0e80c0","name":"Failure - Invalid ICCID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 04:17:38 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"30"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Profile not found\"\n}"}],"_postman_id":"60ef5bd4-f5dd-420d-ba46-fbfd69696f6b"},{"name":"Online Status","id":"92623ab7-d49a-4ef1-9224-ff987af7f97c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/profile_status","description":"<p>Retrive on-demand Online Status of a specific ICCID.</p>\n","urlObject":{"path":["accounts","{{account_id}}","profiles","{{iccid}}","profile_status"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"dc82271a-a155-40f8-ac67-7df58f142dad","name":"Telna","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/profile_status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 04:59:16 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"41"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"ONLINE\",\n    \"ip_address\": \"string\",\n    \"network_type\": \"string\",\n    \"data_usage\": 598783,\n    \"country_name\": \"string\",\n    \"network_name\": \"string\"\n}\n}"},{"id":"82216975-dead-4e38-bc44-311fab365e93","name":"Tata","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/profile_status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 04:59:16 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"41"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"ONLINE\",\n    \"ip_address\": \"string\",\n    \"network_type\": \"string\"\n}"},{"id":"42fc3ac7-bf58-41e5-8863-be2b3f19fe5f","name":"Monogoto","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/profile_status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 04:59:16 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"41"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"ONLINE\",\n    \"ip_address\": \"string\"\n}"},{"id":"1a492844-fabf-4069-8fed-9141342907e1","name":"Offline","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/profile_status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 04:59:16 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"41"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"OFFLINE\",\n    \"ip_address\": null\n}"},{"id":"e106dbd1-a0c9-4abf-a140-fa9f03d6dca6","name":"Failure - Invalid ICCID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/profile_status"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 04:27:36 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"30"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Profile not found\"\n}"}],"_postman_id":"92623ab7-d49a-4ef1-9224-ff987af7f97c"},{"name":"Reset SIM Profile","id":"8f4a0a41-00de-443f-8103-70d228e94716","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/reset_location","description":"<p>API to Reset the SIM Profile.</p>\n<p>Note: We only allow one API call for a specific ICCID within 5 minutes, to give the network and the SIM card time to reset. Please see the Examples, including the 400 Bad Request response example.</p>\n","urlObject":{"path":["accounts","{{account_id}}","profiles","{{iccid}}","reset_location"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"52eb5ece-4ffb-434d-8baf-48a07295aed2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/reset_location"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 04:35:33 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"172"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Request has been accepted for SIM reset.\",\n    \"resource_id\": 4457,\n    \"resource_url\": \"https://api.connectedyou.io/v1/accounts/{{account_id}}/bulk_operations/4473/transactions\"\n}"},{"id":"4d037acf-d7a9-4ea1-a430-210c8e232dea","name":"Failure - Invalid ICCID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/reset_location"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 04:26:12 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"30"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Profile not found\"\n}"},{"id":"9f6a0017-adad-4581-adee-f938a540d96d","name":"Failure - Profile Reset Lock for 5 minutes","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/reset_location"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 06:04:10 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"38"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Please try after 4 minute\"\n}"}],"_postman_id":"8f4a0a41-00de-443f-8103-70d228e94716"},{"name":"Suspend SIM Profiles","id":"33a995c0-c8b7-442b-9e50-8ef1eb1d591d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccids\": [\r\n        \"1234567890123456\",\r\n        \"1234567890123457\"\r\n    ]\r\n}"},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/suspend","description":"<p>Suspend single or multiple SIM Profiles by ICCID(s).  </p>\n<p>You can put up to 5000 ICCIDs in the list.<br />Creates a Bulk Operation with a Transaction record for each ICCID.<br />Processing is asynchronous.</p>\n","urlObject":{"path":["accounts","{{account_id}}","profiles","suspend"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"ea792538-903b-4070-aca5-025d048ff8fd","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccids\": [\r\n        \"1234567890123456\",\r\n        \"1234567890123457\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/suspend"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Feb 2022 07:29:39 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.9.4"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"185"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Request has been accepted to change the billing status.\",\n    \"resource_id\": 133,\n    \"resource_url\": \"https://api.connectedyou.io/v1/accounts/{{account_id}}/bulk_operations/4473/transactions\"\n}"},{"id":"eb549e06-3d73-4f52-9583-c1b479d704cb","name":"Failure - Invalid type of ICCID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccids\": [\r\n        \"12345678901234565556666\",\r\n        \"1234567890123457455555\"\r\n    ]\r\n}"},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/suspend"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 07:17:06 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"128"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"iccids\": {\n        \"0\": [\n            \"Ensure this field has no more than 20 characters.\"\n        ],\n        \"1\": [\n            \"Ensure this field has no more than 20 characters.\"\n        ]\n    }\n}"},{"id":"bd18a17a-760b-4546-aeda-8e4ee539baa6","name":"Failure - Invalid ICCID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccids\": [\r\n        \"1234567890123456832\",\r\n        \"1234567890123457936\"\r\n    ]\r\n}"},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/suspend"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 07:18:57 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"32"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"ICCIDs are invalid.\"\n}"},{"id":"4527acb2-2750-4bd2-b979-87bf9bf7a632","name":"Failure - invalid type of iccid field","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccids\": [\r\n        \"1234567890123456\",\r\n        true\r\n    ]\r\n}"},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/suspend"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 07:50:09 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"40"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"iccids\": {\n        \"1\": [\n            \"Not a valid string.\"\n        ]\n    }\n}"}],"_postman_id":"33a995c0-c8b7-442b-9e50-8ef1eb1d591d"},{"name":"Activate SIM Profiles","id":"2335da54-0161-4df0-8f1a-7fe3b64e4f4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccids\": [\r\n        \"1234567890123456\",\r\n        \"1234567890123457\"\r\n    ]\r\n}"},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/activate","description":"<p>Activate single or multiple SIM Profiles by ICCID(s)</p>\n<p>You can put up to 5000 ICCIDs in the list.<br />Creates a Bulk Operation with a Transaction record for each ICCID.<br />Processing is asynchronous.</p>\n","urlObject":{"path":["accounts","{{account_id}}","profiles","activate"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"03fb669b-b1b7-4a38-a6f6-eb4ca5b772ca","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccids\": [\r\n        \"1234567890123456\",\r\n        \"1234567890123457\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/activate"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Feb 2022 07:28:51 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.9.4"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"185"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Request has been accepted to change the billing status.\",\n    \"resource_id\": 131,\n    \"resource_url\": \"https://api.connectedyou.io/v1/accounts/{{account_id}}/bulk_operations/4473/transactions\"\n}"},{"id":"e1820586-f120-4be5-b9db-d22530833543","name":"Failure - Invalid type of ICCID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccids\": [\r\n        \"12345678901234568788899978844\",\r\n        \"12345678901234578493499490094\"\r\n    ]\r\n}"},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/activate"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 07:23:30 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"128"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"iccids\": {\n        \"0\": [\n            \"Ensure this field has no more than 20 characters.\"\n        ],\n        \"1\": [\n            \"Ensure this field has no more than 20 characters.\"\n        ]\n    }\n}"},{"id":"1fa33e94-2716-46ef-81bd-80139068933e","name":"Failure - Invalid ICCID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccids\": [\r\n        \"1234567890123456\",\r\n        \"1234567890123457\"\r\n    ]\r\n}"},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/activate"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 07:24:24 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"32"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"ICCIDs are invalid.\"\n}"},{"id":"14f74eaf-c88b-4cb6-80f7-cd4cd9043619","name":"Failure - invalid type of iccid field","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccids\": [\r\n        \"1234567890123456\",\r\n        true\r\n    ]\r\n}"},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/activate"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 07:52:16 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"40"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"iccids\": {\n        \"1\": [\n            \"Not a valid string.\"\n        ]\n    }\n}"}],"_postman_id":"2335da54-0161-4df0-8f1a-7fe3b64e4f4c"},{"name":"Terminate SIM Profiles","id":"212605ed-664a-4bb0-b769-b660fe6d3e2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccids\": [\r\n        \"1234567890123456\",\r\n        \"1234567890123457\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/terminate","description":"<p>Terminate single or multiple SIM Profiles by ICCID(s)</p>\n<p>You can put up to 5000 ICCIDs in the list.<br />Creates a Bulk Operation with a Transaction record for each ICCID.<br />Processing is asynchronous.</p>\n","urlObject":{"path":["accounts","{{account_id}}","profiles","terminate"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"1453106f-8779-4b21-b80f-ab357ec093b0","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccids\": [\r\n        \"1234567890123456\",\r\n        \"1234567890123457\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/terminate"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Feb 2022 07:30:26 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.9.4"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"185"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"detail\": \"Request has been accepted to change the billing status.\",\n    \"resource_id\": 134,\n    \"resource_url\": \"https://api.connectedyou.io/v1/accounts/{{account_id}}/bulk_operations/4473/transactions\"\n}"},{"id":"b0d6ad8f-9022-4e8d-9bc9-5f75803ef856","name":"Failure - Invalid type of ICCID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccids\": [\r\n        \"12345678901234568998388903283892\",\r\n        \"1234567890123457978787897897893\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/terminate"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 07:25:16 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"128"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"iccids\": {\n        \"0\": [\n            \"Ensure this field has no more than 20 characters.\"\n        ],\n        \"1\": [\n            \"Ensure this field has no more than 20 characters.\"\n        ]\n    }\n}"},{"id":"90e53c51-714e-4e09-9649-c0248b4fd0ae","name":"Failure - Invalid ICCID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccids\": [\r\n        \"1234567890123456\",\r\n        \"1234567890123457\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/terminate"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 07:25:43 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"32"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"ICCIDs are invalid.\"\n}"},{"id":"4e8ce7da-f82b-463e-bfb7-e80420fb1870","name":"Failure - invalid type of iccid field","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccids\": [\r\n        \"1234567890123456\",\r\n        true\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/terminate"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 07:52:56 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"40"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"iccids\": {\n        \"1\": [\n            \"Not a valid string.\"\n        ]\n    }\n}"}],"_postman_id":"212605ed-664a-4bb0-b769-b660fe6d3e2a"},{"name":"Send SMS","id":"05e5b8e3-5922-4c79-9d11-c7e701cde623","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"sms_text\": \"Hi, Good Morning\",\r\n    \"validity_period_in_minutes\": 10\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/sms","description":"<p>API to send SMS to ICCID</p>\n<p>Body Parameters</p>\n<p><strong>sms_text</strong> <em>(required)</em><br />The SMS message content. Maximum length is 160 characters.</p>\n<p><strong>validity_period_in_minutes</strong> <em>(optional)</em><br />Specifies how long (in minutes) the SMS is valid for delivery.</p>\n<ul>\n<li><p><strong>Minimum:</strong> 5 minutes</p>\n</li>\n<li><p><strong>Maximum:</strong> 10080 minutes (7 days)</p>\n</li>\n<li><p><strong>Default:</strong> 1440 minutes (1 day)</p>\n</li>\n</ul>\n","urlObject":{"path":["accounts","{{account_id}}","profiles","{{iccid}}","sms"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"f5f592cf-1194-49c8-b2ee-6e72f09c68b0","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"sms_text\": \"Hi, Good Morning\",\r\n    \"validity_period_in_minutes\": 6\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/sms"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"86"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 07 Apr 2026 21:18:37 GMT"},{"key":"x-amzn-RequestId","value":"8d5a4f05-ea7e-4b95-97dc-0d0b1a5d1ae3"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Allow","value":"GET, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"connectedyou"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 00a0f60c17ef48e355a656be0c3da1de.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BLR50-P4"},{"key":"X-Amz-Cf-Id","value":"pKFKf1WHlzgLGefyh59qlzZIWGWZ-2zeKdUm0L8YmD_RWGwYZcoMHw=="},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'none'"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"SMS sent successfully.\",\n    \"sms_id\": \"a1cabbd5-8e2d-4027-8c52-4b603ba93e12\"\n}"},{"id":"b87a5f5d-1607-43c9-a41a-0a0e77aa440c","name":"Failiure - Validity Period Limit Exceeded","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"sms_text\": \"Good Morning\",\r\n    \"validity_period_in_minutes\": 100000\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/sms"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"84"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 07 Apr 2026 21:16:06 GMT"},{"key":"x-amzn-RequestId","value":"2ce4dde9-5ef6-4ec8-b02c-46332e7c12d9"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Allow","value":"GET, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"connectedyou"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 a13dc769d7d600d4873ae50d0f0f8056.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BLR50-P4"},{"key":"X-Amz-Cf-Id","value":"sO75nJzi9Mm2g7POAOavJ12AMDXcKe_Qoc0IsU5z49m-K3Bqau8tKQ=="},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'none'"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"validity_period_in_minutes\": [\n        \"Ensure this value is less than or equal to 10080.\"\n    ]\n}"},{"id":"596485df-b2b4-4085-89aa-07db3abe9274","name":"Failure - SMS Text Limit Exceeded","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"sms_text\": \"This is a sample SMS message that intentionally exceeds the 160 character limit set for a single SMS. Once this limit is crossed, the API should return an error instead of sending the message.\",\r\n    \"validity_period_in_minutes\": 6\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/sms"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"67"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 07 Apr 2026 21:17:30 GMT"},{"key":"x-amzn-RequestId","value":"b3cb9971-d124-4b61-ac4f-fe1c8a536429"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Allow","value":"GET, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"connectedyou"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 a1b65f70ffc6e3717e17091dd53c6dda.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BLR50-P4"},{"key":"X-Amz-Cf-Id","value":"tmW2XcMZcTLqapOKTBQXmSAub81Zlh_to-HgkYm7l_EBlPodt80QMw=="},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'none'"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"sms_text\": [\n        \"Ensure this field has no more than 160 characters.\"\n    ]\n}"},{"id":"e10c67cd-625d-42d5-9859-2ab6c1afea40","name":"Failure - ICCID not found","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"sms_text\": \"Hi, Good Morning\",\r\n    \"validity_period_in_minutes\": 6\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/sms"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"59"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 07 Apr 2026 21:19:08 GMT"},{"key":"x-amzn-RequestId","value":"7de51555-9ecd-4c79-8ef3-dd096c723721"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Allow","value":"GET, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"connectedyou"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 00a0f60c17ef48e355a656be0c3da1de.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BLR50-P4"},{"key":"X-Amz-Cf-Id","value":"vteOKVn8lLUT_WqP2cHyQodqCI4sOZa9Z2terkSj8fhIOxu-zsqBig=="},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'none'"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Profile not found for ICCID 891030000000307310\"\n}"},{"id":"848f3ba9-4220-48df-81c0-2b302d34c556","name":"Failure - Terminated ICCID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"sms_text\": \"Hi, Good Morning\",\r\n    \"validity_period_in_minutes\": 10\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/sms"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"62"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 07 Apr 2026 21:26:52 GMT"},{"key":"x-amzn-RequestId","value":"ee753ced-5ca0-4ba5-8a62-0f7cdc08e32a"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Allow","value":"GET, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"connectedyou"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 ceddb0501f3b8ad978cfa8c6f0ac508a.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BLR50-P4"},{"key":"X-Amz-Cf-Id","value":"sfBUwjgyq-bEQk5AXA4YQWpZ7bZXzANRSiANbmjr3PgRoKQBPo-ioA=="},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'none'"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Sending SMS is not supported for Terminated SIMs.\"\n}"},{"id":"88ed3041-8e27-453b-af67-dbc44b0a4b67","name":"Failure - CMP configuration error","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"sms_text\": \"Hi, Good Morning\",\r\n    \"validity_period_in_minutes\": 10000\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/sms"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 16 Apr 2026 05:20:12 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.14.3"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"84"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"CMP configuration error: Short code is missing. Please contact support.\"\n}"}],"_postman_id":"05e5b8e3-5922-4c79-9d11-c7e701cde623"},{"name":"List SMS","id":"9869ecf2-ea4d-4c37-91c3-f00d4227bab1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/sms","urlObject":{"path":["accounts","{{account_id}}","profiles","{{iccid}}","sms"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"f751772e-dedf-48b5-ab4d-e29f9902aaac","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/sms"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"233"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 07 Apr 2026 21:13:42 GMT"},{"key":"x-amzn-RequestId","value":"be87ffed-d2dd-4a68-be5d-7e1213523934"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Allow","value":"GET, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"connectedyou"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 7edf3f39c1a5f382b0d26627290c768c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BLR50-P4"},{"key":"X-Amz-Cf-Id","value":"IajjRTlcAUoeciei_qrqfgskTNrzXE3YWl3d4PtsQ0hCEFTQNqSGgA=="},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'none'"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"sms_logs\": [\n        {\n            \"iccid\": \"8910300000003073104\",\n            \"sms_text\": \"Hi, Good Morning\",\n            \"status\": \"SENT\",\n            \"error_message\": null,\n            \"validity_period_in_minutes\": 10,\n            \"created_at\": \"2026-04-07T21:10:30.004877Z\"\n        }\n    ],\n    \"limit\": 50,\n    \"offset\": 0,\n    \"total\": 1\n}"}],"_postman_id":"9869ecf2-ea4d-4c37-91c3-f00d4227bab1"}],"id":"c82b5f8f-0e3e-436e-8391-d907ea201cdd","description":"<p>These APIs cover</p>\n<ul>\n<li><p>Card and Profile List and Detail</p>\n</li>\n<li><p>Lifecycle changes</p>\n</li>\n<li><p>SIM Reset</p>\n</li>\n</ul>\n","_postman_id":"c82b5f8f-0e3e-436e-8391-d907ea201cdd"},{"name":"Usage","item":[{"name":"Profile CDRs","id":"dca934cb-d356-4b41-a3f5-f98b3f375305","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/cdrs?session_end_after=2025-07-15T08:28:20Z","description":"<p>Retrieve CDR records for in a specific Profile (ICCID)</p>\n<p>To fetch new CDR records, use the parameter <strong>session_end_after</strong> to fetch records after the last fetched time.</p>\n<p><strong>e.g. session_end_after=2025-07-15T08:28:30Z</strong></p>\n","urlObject":{"path":["accounts","{{account_id}}","profiles","{{iccid}}","cdrs"],"host":["https://api.connectedyou.io/v1"],"query":[{"disabled":true,"description":{"content":"<p>specifying where to start a page</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>limit the number of fetched records</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>session_end, duration, kilobytes, sms_count, voice_seconds, call_type, traffic_type, country_name, network_operator_name (for desc order use \"-\" as prefix with the value)</p>\n","type":"text/plain"},"key":"sort","value":""},{"disabled":true,"description":{"content":"<p>filter on duration</p>\n","type":"text/plain"},"key":"duration","value":"10"},{"disabled":true,"description":{"content":"<p>filter on kilobytes</p>\n","type":"text/plain"},"key":"kilobytes","value":"5"},{"disabled":true,"description":{"content":"<p>filter on sms_count</p>\n","type":"text/plain"},"key":"sms_count","value":"0"},{"disabled":true,"description":{"content":"<p>filter on voice_seconds</p>\n","type":"text/plain"},"key":"voice_seconds","value":"0"},{"disabled":true,"description":{"content":"<p>Choices: DATA, VOICE, SMS</p>\n","type":"text/plain"},"key":"call_type","value":"DATA"},{"disabled":true,"description":{"content":"<p>Choices: MT, MO</p>\n","type":"text/plain"},"key":"traffic_type","value":"MO"},{"disabled":true,"description":{"content":"<p>filter on source_cdr_id</p>\n","type":"text/plain"},"key":"source_cdr_id","value":"619FB613-F605-4DDD-9B55-B7329CE2BCBB_1_89310709193062"},{"disabled":true,"description":{"content":"<p>filter on country_name</p>\n","type":"text/plain"},"key":"country_name","value":"Czech rep."},{"disabled":true,"description":{"content":"<p>filter on network_operator_name</p>\n","type":"text/plain"},"key":"network_operator_name","value":"O2"},{"disabled":true,"description":{"content":"<p>filter on imei</p>\n","type":"text/plain"},"key":"imei","value":"xyz"},{"disabled":true,"description":{"content":"<p>filter on ip_address</p>\n","type":"text/plain"},"key":"ip_address","value":"192.168.66.165"},{"disabled":true,"description":{"content":"<p>filter on session_end_before range (YYYY-MM-DD)</p>\n","type":"text/plain"},"key":"session_end_before","value":"2025-06-03T23:59:59Z"},{"disabled":true,"description":{"content":"<p>search on all fields</p>\n","type":"text/plain"},"key":"search","value":""},{"disabled":true,"description":{"content":"<p>filter on mcc</p>\n","type":"text/plain"},"key":"mcc","value":"230"},{"disabled":true,"description":{"content":"<p>filter on mnc</p>\n","type":"text/plain"},"key":"mnc","value":"02"},{"key":"session_end_after","value":"2025-07-15T08:28:20Z"}],"variable":[]}},"response":[{"id":"d3898130-54ca-422a-ba0e-a859a2054719","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/cdrs","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","profiles","{{iccid}}","cdrs"],"query":[{"key":"offset","value":"0","type":"text","disabled":true},{"key":"limit","value":"10","description":"limit the results on the query","disabled":true},{"key":"sort","value":"","description":"session_end, duration, kilobytes, sms_count, voice_seconds, call_type, traffic_type, country_name, network_operator_name (for desc order use \"-\" as prefix with the value)","disabled":true},{"key":"duration","value":"10","description":"filter on duration","type":"text","disabled":true},{"key":"kilobytes","value":"5","description":"filter on kilobytes","type":"text","disabled":true},{"key":"sms_count","value":"0","description":"filter on sms_count","type":"text","disabled":true},{"key":"voice_seconds","value":"0","description":"filter on voice_seconds","type":"text","disabled":true},{"key":"call_type","value":"DATA","description":"Choices: DATA, VOICE, SMS","type":"text","disabled":true},{"key":"traffic_type","value":"MO","description":"Choices: MT, MO","type":"text","disabled":true},{"key":"source_cdr_id","value":"619FB613-F605-4DDD-9B55-B7329CE2BCBB_1_89310709193062","description":"filter on source_cdr_id","type":"text","disabled":true},{"key":"country_name","value":"Czech rep.","description":"filter on country_name","type":"text","disabled":true},{"key":"network_operator_name","value":"O2","description":"filter on network_operator_name","type":"text","disabled":true},{"key":"imei","value":"xyz","description":"filter on imei","type":"text","disabled":true},{"key":"ip_address","value":"192.168.66.165","description":"filter on ip_address","type":"text","disabled":true},{"key":"session_end_before","value":"2021-09-13","description":"filter on session_end_before range (YYYY-MM-DD)","disabled":true},{"key":"session_end_after","value":"2020-09-01","description":"filter on session_end_after range (YYYY-MM-DD)","disabled":true},{"key":"mcc","value":"230","description":"filter on mcc","disabled":true},{"key":"mnc","value":"02","description":"filter on mnc","disabled":true},{"key":"search","value":"O2","type":"text","description":"search on all fields","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 04:22:08 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"645"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"cdrs\": [\n        {\n            \"account_id\": \"number\",\n            \"account_name\": \"string\",\n            \"created_at\": \"2023-05-10T10:39:18.501825Z\",\n            \"iccid\": \"string\",\n            \"session_start\": \"2023-02-20T19:14:16Z\",\n            \"session_end\": \"2023-02-20T19:44:16Z\",\n            \"duration\": 1800,\n            \"source_cdr_id\": \"6664928806306244_c09f43fb-8e13-4151-bdaa-384b44645a15_8910300234023400000\",\n            \"kilobytes\": 3073,\n            \"call_type\": \"string\",\n            \"traffic_type\": \"string\",\n            \"sms_count\": 0,\n            \"voice_seconds\": 0,\n            \"mcc\": \"string\",\n            \"mnc\": \"string\",\n            \"country_name\": \"Denmark\",\n            \"network_operator_name\": \"string\",\n            \"imei\": \"string\",\n            \"ip_address\": \"string\",\n            \"sim_profile\": \"string\",\n            \"provider\": \"string\"\n        }\n    ],\n    \"limit\": 1,\n    \"offset\": 0,\n    \"total\": 2\n}"},{"id":"adaa8569-caf9-494c-99e5-e1a6e1a141e1","name":"Failure - Invalid ICCID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/cdrs","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","profiles","{{iccid}}","cdrs"],"query":[{"key":"offset","value":"0","type":"text","disabled":true},{"key":"limit","value":"10","description":"limit the results on the query","disabled":true},{"key":"sort","value":"","description":"session_end, duration, kilobytes, sms_count, voice_seconds, call_type, traffic_type, country_name, network_operator_name (for desc order use \"-\" as prefix with the value)","disabled":true},{"key":"duration","value":"10","description":"filter on duration","type":"text","disabled":true},{"key":"kilobytes","value":"5","description":"filter on kilobytes","type":"text","disabled":true},{"key":"sms_count","value":"0","description":"filter on sms_count","type":"text","disabled":true},{"key":"voice_seconds","value":"0","description":"filter on voice_seconds","type":"text","disabled":true},{"key":"call_type","value":"DATA","description":"Choices: DATA, VOICE, SMS","type":"text","disabled":true},{"key":"traffic_type","value":"MO","description":"Choices: MT, MO","type":"text","disabled":true},{"key":"source_cdr_id","value":"619FB613-F605-4DDD-9B55-B7329CE2BCBB_1_89310709193062","description":"filter on source_cdr_id","type":"text","disabled":true},{"key":"country_name","value":"Czech rep.","description":"filter on country_name","type":"text","disabled":true},{"key":"network_operator_name","value":"O2","description":"filter on network_operator_name","type":"text","disabled":true},{"key":"imei","value":"xyz","description":"filter on imei","type":"text","disabled":true},{"key":"ip_address","value":"192.168.66.165","description":"filter on ip_address","type":"text","disabled":true},{"key":"session_end_before","value":"2021-09-13","description":"filter on session_end_before range (YYYY-MM-DD)","disabled":true},{"key":"session_end_after","value":"2020-09-01","description":"filter on session_end_after range (YYYY-MM-DD)","disabled":true},{"key":"search","value":"","type":"text","description":"search on all fields","disabled":true},{"key":"mcc","value":"230","description":"filter on mcc","disabled":true},{"key":"mnc","value":"02","description":"filter on mnc","disabled":true}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 04:24:31 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"30"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Profile not found\"\n}"}],"_postman_id":"dca934cb-d356-4b41-a3f5-f98b3f375305"},{"name":"Account-wide CDRs","id":"937d62b9-9b26-4cb4-ad2d-2f74d06fae14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cdrs?session_end_after=2025-07-15T08:28:20Z","description":"<p>Retrieve CDR records for the whole Account.</p>\n<p>To fetch new CDR records, use the parameter <strong>session_end_after</strong> to fetch records after the last fetched time.</p>\n<p><strong>e.g. session_end_after=2025-07-15T08:28:30Z</strong></p>\n","urlObject":{"path":["accounts","{{account_id}}","cdrs"],"host":["https://api.connectedyou.io/v1"],"query":[{"disabled":true,"description":{"content":"<p>specifying where to start a page</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>limit the number of fetched records</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>session_end, duration, kilobytes, sms_count, voice_seconds, call_type, traffic_type, country_name, network_operator_name (for desc order use \"-\" as prefix with the value)</p>\n","type":"text/plain"},"key":"sort","value":""},{"disabled":true,"description":{"content":"<p>filter on duration</p>\n","type":"text/plain"},"key":"duration","value":"10"},{"disabled":true,"description":{"content":"<p>filter on kilobytes</p>\n","type":"text/plain"},"key":"kilobytes","value":"5"},{"disabled":true,"description":{"content":"<p>filter on sms_count</p>\n","type":"text/plain"},"key":"sms_count","value":"0"},{"disabled":true,"description":{"content":"<p>filter on voice_seconds</p>\n","type":"text/plain"},"key":"voice_seconds","value":"0"},{"disabled":true,"description":{"content":"<p>Choices: DATA, VOICE, SMS</p>\n","type":"text/plain"},"key":"call_type","value":"DATA"},{"disabled":true,"description":{"content":"<p>Choices: MT, MO</p>\n","type":"text/plain"},"key":"traffic_type","value":"MO"},{"disabled":true,"description":{"content":"<p>filter on source_cdr_id</p>\n","type":"text/plain"},"key":"source_cdr_id","value":"619FB613-F605-4DDD-9B55-B7329CE2BCBB_1_89310709193062"},{"disabled":true,"description":{"content":"<p>filter on country_name</p>\n","type":"text/plain"},"key":"country_name","value":"Czech rep."},{"disabled":true,"description":{"content":"<p>filter on network_operator_name</p>\n","type":"text/plain"},"key":"network_operator_name","value":"O2"},{"disabled":true,"description":{"content":"<p>filter on imei</p>\n","type":"text/plain"},"key":"imei","value":"xyz"},{"disabled":true,"description":{"content":"<p>filter on ip_address</p>\n","type":"text/plain"},"key":"ip_address","value":"192.168.66.165"},{"disabled":true,"description":{"content":"<p>filter on session_end_before range (YYYY-MM-DD)</p>\n","type":"text/plain"},"key":"session_end_before","value":"2025-06-03T23:59:59Z"},{"disabled":true,"description":{"content":"<p>search on all fields</p>\n","type":"text/plain"},"key":"search","value":""},{"disabled":true,"description":{"content":"<p>filter on mcc</p>\n","type":"text/plain"},"key":"mcc","value":"230"},{"disabled":true,"description":{"content":"<p>filter on mnc</p>\n","type":"text/plain"},"key":"mnc","value":"02"},{"key":"session_end_after","value":"2025-07-15T08:28:20Z"}],"variable":[]}},"response":[{"id":"f4548443-d9d1-4e58-a59a-6c50f93e9ac7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/cdrs","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","profiles","{{iccid}}","cdrs"],"query":[{"key":"offset","value":"0","type":"text","disabled":true},{"key":"limit","value":"10","description":"limit the results on the query","disabled":true},{"key":"sort","value":"","description":"session_end, duration, kilobytes, sms_count, voice_seconds, call_type, traffic_type, country_name, network_operator_name (for desc order use \"-\" as prefix with the value)","disabled":true},{"key":"duration","value":"10","description":"filter on duration","type":"text","disabled":true},{"key":"kilobytes","value":"5","description":"filter on kilobytes","type":"text","disabled":true},{"key":"sms_count","value":"0","description":"filter on sms_count","type":"text","disabled":true},{"key":"voice_seconds","value":"0","description":"filter on voice_seconds","type":"text","disabled":true},{"key":"call_type","value":"DATA","description":"Choices: DATA, VOICE, SMS","type":"text","disabled":true},{"key":"traffic_type","value":"MO","description":"Choices: MT, MO","type":"text","disabled":true},{"key":"source_cdr_id","value":"619FB613-F605-4DDD-9B55-B7329CE2BCBB_1_89310709193062","description":"filter on source_cdr_id","type":"text","disabled":true},{"key":"country_name","value":"Czech rep.","description":"filter on country_name","type":"text","disabled":true},{"key":"network_operator_name","value":"O2","description":"filter on network_operator_name","type":"text","disabled":true},{"key":"imei","value":"xyz","description":"filter on imei","type":"text","disabled":true},{"key":"ip_address","value":"192.168.66.165","description":"filter on ip_address","type":"text","disabled":true},{"key":"session_end_before","value":"2021-09-13","description":"filter on session_end_before range (YYYY-MM-DD)","disabled":true},{"key":"session_end_after","value":"2020-09-01","description":"filter on session_end_after range (YYYY-MM-DD)","disabled":true},{"key":"mcc","value":"230","description":"filter on mcc","disabled":true},{"key":"mnc","value":"02","description":"filter on mnc","disabled":true},{"key":"search","value":"O2","type":"text","description":"search on all fields","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 04:22:08 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"645"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"cdrs\": [\n        {\n            \"account_id\": \"number\",\n            \"account_name\": \"string\",\n            \"created_at\": \"2023-05-10T10:39:18.501825Z\",\n            \"iccid\": \"string\",\n            \"session_start\": \"2023-02-20T19:14:16Z\",\n            \"session_end\": \"2023-02-20T19:44:16Z\",\n            \"duration\": 1800,\n            \"source_cdr_id\": \"6664928806306244_c09f43fb-8e13-4151-bdaa-384b44645a15_8910300234023400000\",\n            \"kilobytes\": 3073,\n            \"call_type\": \"string\",\n            \"traffic_type\": \"string\",\n            \"sms_count\": 0,\n            \"voice_seconds\": 0,\n            \"mcc\": \"string\",\n            \"mnc\": \"string\",\n            \"country_name\": \"Denmark\",\n            \"network_operator_name\": \"string\",\n            \"imei\": \"string\",\n            \"ip_address\": \"string\",\n            \"sim_profile\": \"string\",\n            \"provider\": \"string\"\n        }\n    ],\n    \"limit\": 1,\n    \"offset\": 0,\n    \"total\": 2\n}"},{"id":"55a045b2-22a0-4700-9955-fc5a0946dfce","name":"Failure - Invalid ICCID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/cdrs","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","profiles","{{iccid}}","cdrs"],"query":[{"key":"offset","value":"0","type":"text","disabled":true},{"key":"limit","value":"10","description":"limit the results on the query","disabled":true},{"key":"sort","value":"","description":"session_end, duration, kilobytes, sms_count, voice_seconds, call_type, traffic_type, country_name, network_operator_name (for desc order use \"-\" as prefix with the value)","disabled":true},{"key":"duration","value":"10","description":"filter on duration","type":"text","disabled":true},{"key":"kilobytes","value":"5","description":"filter on kilobytes","type":"text","disabled":true},{"key":"sms_count","value":"0","description":"filter on sms_count","type":"text","disabled":true},{"key":"voice_seconds","value":"0","description":"filter on voice_seconds","type":"text","disabled":true},{"key":"call_type","value":"DATA","description":"Choices: DATA, VOICE, SMS","type":"text","disabled":true},{"key":"traffic_type","value":"MO","description":"Choices: MT, MO","type":"text","disabled":true},{"key":"source_cdr_id","value":"619FB613-F605-4DDD-9B55-B7329CE2BCBB_1_89310709193062","description":"filter on source_cdr_id","type":"text","disabled":true},{"key":"country_name","value":"Czech rep.","description":"filter on country_name","type":"text","disabled":true},{"key":"network_operator_name","value":"O2","description":"filter on network_operator_name","type":"text","disabled":true},{"key":"imei","value":"xyz","description":"filter on imei","type":"text","disabled":true},{"key":"ip_address","value":"192.168.66.165","description":"filter on ip_address","type":"text","disabled":true},{"key":"session_end_before","value":"2021-09-13","description":"filter on session_end_before range (YYYY-MM-DD)","disabled":true},{"key":"session_end_after","value":"2020-09-01","description":"filter on session_end_after range (YYYY-MM-DD)","disabled":true},{"key":"search","value":"","type":"text","description":"search on all fields","disabled":true},{"key":"mcc","value":"230","description":"filter on mcc","disabled":true},{"key":"mnc","value":"02","description":"filter on mnc","disabled":true}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 04:24:31 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"30"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Profile not found\"\n}"}],"_postman_id":"937d62b9-9b26-4cb4-ad2d-2f74d06fae14"},{"name":"Daily Usage Summary","id":"53324acb-3398-478b-b061-e3ebdcb1c986","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/summary/daily","description":"<p>Fetch Daily Usage Summary records for specific ICCID, for the last 31 days.</p>\n","urlObject":{"path":["accounts","{{account_id}}","profiles","{{iccid}}","summary","daily"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"c28c999d-ae2a-43e5-b7cf-a29221f9ed70","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/summary/daily"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 05:36:16 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"3487"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"summaries\": [\n        {\n            \"date\": \"2023-04-23\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-04-24\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-04-25\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-04-26\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-04-27\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-04-28\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-04-29\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-04-30\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-01\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-02\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-03\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-04\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-05\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-06\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-07\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-08\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-09\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-10\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-11\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-12\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-13\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-14\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-15\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-16\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-17\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-18\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-19\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-20\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-21\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-22\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05-23\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        }\n    ]\n}"}],"_postman_id":"53324acb-3398-478b-b061-e3ebdcb1c986"},{"name":"Monthly Usage Summary","id":"bbf70c1f-4e3e-4a66-af71-be6080ee8a36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/summary/monthly","description":"<p>Fetch Monthly Usage Summary records for specific ICCID, for the last 13 Months (including the current, partial month).</p>\n","urlObject":{"path":["accounts","{{account_id}}","profiles","{{iccid}}","summary","monthly"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"313e4f8c-e484-4713-b0c9-f5e9fc8c94ef","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/summary/monthly"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 05:31:56 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"1326"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"summaries\": [\n        {\n            \"date\": \"2022-06\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2022-07\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2022-08\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2022-09\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2022-10\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2022-11\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2022-12\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-01\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-02\",\n            \"kilobytes\": 3073,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-03\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-04\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        },\n        {\n            \"date\": \"2023-05\",\n            \"kilobytes\": 0,\n            \"voice_seconds_mo\": 0,\n            \"voice_seconds_mt\": 0,\n            \"sms_mo\": 0,\n            \"sms_mt\": 0\n        }\n    ]\n}"}],"_postman_id":"bbf70c1f-4e3e-4a66-af71-be6080ee8a36"}],"id":"536c4136-ac47-4946-af6c-cc8b151e3db1","description":"<p>These APIs cover</p>\n<ul>\n<li><p>Profile specific CDRs</p>\n</li>\n<li><p>Account Wide CDRs</p>\n</li>\n<li><p>Summary APIs for Daily and Monthly aggregates</p>\n</li>\n</ul>\n","_postman_id":"536c4136-ac47-4946-af6c-cc8b151e3db1"},{"name":"Network Events","item":[{"name":"Account-wide Network Events","id":"0b41676f-b6a6-459f-9bfa-5bc693577f8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/network_event_diagnostics?event_date_after=2025-08-01T00:00:00Z","description":"<p>Retrieve a list of Network Events (Location Updates) across all profiles in the whole Account.</p>\n<p>To fetch new Network Event records, use the parameter </p>\n<p><strong>event_date_after</strong> to fetch records after the last fetched time.</p>\n<p>e.g. event_date_after=2025-08-01T07:30:12Z</p>\n","urlObject":{"path":["accounts","{{account_id}}","network_event_diagnostics"],"host":["https://api.connectedyou.io/v1"],"query":[{"disabled":true,"description":{"content":"<p>Choices: ACCEPTED, REJECTED</p>\n","type":"text/plain"},"key":"event_status","value":""},{"disabled":true,"description":{"content":"<p>event_date, event_type, event_code, event_status, event_status_description, country_name, network_operator_name (for desc order use \"-\" as prefix with the value)</p>\n","type":"text/plain"},"key":"sort","value":"-event_date"},{"disabled":true,"description":{"content":"<p>search on all fields</p>\n","type":"text/plain"},"key":"search","value":""},{"disabled":true,"key":"country_name","value":"United states"},{"disabled":true,"key":"network_operator_name","value":"xyz"},{"disabled":true,"key":"mcc","value":"310"},{"disabled":true,"key":"mnc","value":"010"},{"disabled":true,"description":{"content":"<p>Choices: VOICE, GPRS</p>\n","type":"text/plain"},"key":"event_code","value":""},{"disabled":true,"description":{"content":"<p>limit the number of fetched records</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>specifying where to start a page</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>filter on event_date_before range (YYYY-MM-DD)</p>\n","type":"text/plain"},"key":"event_date_before","value":"2025-06-03T23:59:59Z"},{"key":"event_date_after","value":"2025-08-01T00:00:00Z"}],"variable":[]}},"response":[{"id":"5c595d58-a4f8-40a4-b229-d02fe8491a85","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/network_event_diagnostics?iccid=xyz&limit=1","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","network_event_diagnostics"],"query":[{"key":"event_status","value":"REJECTED","type":"text","disabled":true},{"key":"sort","value":"-event_date","type":"text","disabled":true},{"key":"search","value":"UK","type":"text","disabled":true},{"key":"export","value":"True","description":"to export lu's","disabled":true},{"key":"country_name","value":"United states","type":"text","disabled":true},{"key":"network_operator_name","value":"xyz","type":"text","disabled":true},{"key":"mcc","value":"310","type":"text","disabled":true},{"key":"mnc","value":"010","disabled":true},{"key":"iccid","value":"xyz","description":"iccid is mandatory"},{"key":"limit","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 11:12:25 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"478"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"network_events\": [\n        {\n            \"account_id\": \"number\",\n            \"account_name\": \"string\",\n            \"event_date\": \"2023-02-16T08:29:35.169010Z\",\n            \"event_code\": \"string\",\n            \"event_status\": \"string\",\n            \"event_status_description\": \"Location update is successful.\",\n            \"iccid\": \"string\",\n            \"mcc\": \"string\",\n            \"mnc\": \"05\",\n            \"country_name\": \"Brazil\",\n            \"network_operator_name\": \"Claro\",\n            \"sim_profile\": \"string\",\n            \"provider\": \"string\"\n        }\n    ],\n    \"limit\": 1,\n    \"offset\": 0,\n    \"total\": 64\n}"}],"_postman_id":"0b41676f-b6a6-459f-9bfa-5bc693577f8d"}],"id":"e39762bf-8d3a-4914-9aff-e263da4be6e0","_postman_id":"e39762bf-8d3a-4914-9aff-e263da4be6e0","description":""},{"name":"eUICC","item":[{"name":"Actions","item":[{"name":"Audit","id":"674f2246-1946-401d-9364-dc68a150c859","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"iccid\": \"xyz\" //optional\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/audit","description":"<p>Request an Audit operation on a specific eUICC Card (EID).</p>\n<p>To audit a specific ICCID related to the EID, include the ICCID in the request body. If the ICCID is not provided, the system will automatically select the ICCID of the eUICC-enabled profile associated with the EID for the audit process.</p>\n<p>Processing is asynchronous.</p>\n","urlObject":{"path":["accounts","{{account_id}}","euicc_cards","{{eid}}","audit"],"host":["https://api.connectedyou.io/v1"],"query":[{"disabled":true,"description":{"content":"<p>choices: NOW, NEXT_NETWORK_EVENT</p>\n<p>NOW- &gt; execute at the time of creation</p>\n<p>NEXT_NETWORK_EVENT -&gt; will be queued until next network event</p>\n","type":"text/plain"},"key":"execute_on","value":"NOW"}],"variable":[]}},"response":[{"id":"45c1361f-a627-4025-ba37-2c05b8504378","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/audit"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 05:43:00 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"176"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Request has been accepted to AUDIT the Card.\",\n    \"resource_id\": 4458,\n    \"resource_url\": \"url\"\n}"},{"id":"56f51ea3-86c4-4288-a3a1-6eddc3fc9d6a","name":"Failure - Invalid EID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/audit"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:15:24 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"28"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Card not found.\"\n}"}],"_postman_id":"674f2246-1946-401d-9364-dc68a150c859"},{"name":"Enable","id":"fc2455d4-8bb8-4a07-8d90-7d3560b42f18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/{{iccid}}/enable","description":"<p>Request for a specific SIM Profile (ICCID) to be set as ENABLED on a specific eUICC Card (EID).</p>\n<p>Processing is asynchronous.</p>\n","urlObject":{"path":["accounts","{{account_id}}","euicc_cards","{{eid}}","profiles","{{iccid}}","enable"],"host":["https://api.connectedyou.io/v1"],"query":[{"disabled":true,"description":{"content":"<p>choices: NOW, NEXT_NETWORK_EVENT</p>\n<p>NOW- &gt; execute at the time of creation</p>\n<p>NEXT_NETWORK_EVENT -&gt; will be queued until next network event</p>\n","type":"text/plain"},"key":"execute_on","value":"NOW"}],"variable":[]}},"response":[{"id":"2efbce60-5511-4a21-b3ac-73f90e25b49d","name":"Sucess","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/{{iccid}}/enable"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 05:45:17 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"192"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Request has been accepted to enable the profile on the Card.\",\n    \"resource_id\": 4459,\n    \"resource_url\": \"url\"\n}"},{"id":"e30e140f-2e98-49d0-a761-58f8adfd5878","name":"Failure -  Invalid ICCID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/{{iccid}}/enable"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:17:03 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"31"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Profile not found.\"\n}"},{"id":"830c8c41-5131-422c-8c1e-6049f146b135","name":"Failure - ICCID not linked with card","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/{{iccid}}/enable"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:17:39 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"49"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Profile is not linked with the Card.\"\n}"},{"id":"77bb4f3f-18cc-499e-b2d1-228db63a3d3f","name":"Failure - Inavlid EID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/{{iccid}}/enable"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:19:02 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"28"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Card not found.\"\n}"}],"_postman_id":"fc2455d4-8bb8-4a07-8d90-7d3560b42f18"},{"name":"Set Fallback","id":"866907cb-6751-40de-842b-8a892f330e87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/{{iccid}}/set_fallback","description":"<p>Request for a specific SIM Profile (ICCID) to be set as the \"Fallback\" ICCID on a specific eUICC Card (EID).</p>\n<p>Processing is asynchronous.</p>\n","urlObject":{"path":["accounts","{{account_id}}","euicc_cards","{{eid}}","profiles","{{iccid}}","set_fallback"],"host":["https://api.connectedyou.io/v1"],"query":[{"disabled":true,"description":{"content":"<p>choices: NOW, NEXT_NETWORK_EVENT</p>\n<p>NOW- &gt; execute at the time of creation</p>\n<p>NEXT_NETWORK_EVENT -&gt; will be queued until next network event</p>\n","type":"text/plain"},"key":"execute_on","value":"NOW"}],"variable":[]}},"response":[{"id":"9a8f2b3b-9e60-4ac3-a1dd-0f07bc499b21","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/{{iccid}}/set_fallback"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 05:46:56 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"194"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Request has been accepted to set fallback profile on the Card.\",\n    \"resource_id\": 4460,\n    \"resource_url\": \"url\"\n}"},{"id":"bd479ce0-51a1-49f0-b67d-ea73ac7b5057","name":"Failure - Invalid ICCID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/{{iccid}}/set_fallback"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:20:29 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"31"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Profile not found.\"\n}"},{"id":"87118374-c7b0-4a26-870e-6356c3103a87","name":"Failure - ICCID not linked with card","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/{{iccid}}/set_fallback"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:21:19 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"49"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Profile is not linked with the Card.\"\n}"},{"id":"b0d18e13-1354-420b-9b22-fe975a53eb11","name":"Failure - Invalid EID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/{{iccid}}/set_fallback"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:22:31 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"28"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Card not found.\"\n}"}],"_postman_id":"866907cb-6751-40de-842b-8a892f330e87"},{"name":"Download Profile","id":"e3d43122-d1af-471d-91fe-43d82660244b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"enable_profile\":true,\r\n    \"iccid\":\"xyz\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/download","description":"<p>Request a Download operaiton for a specific ICCID on a specific eUICC Card (EID).</p>\n<p>The Soft Profile ICCIDs can be found from the \"List Soft Profiles\" API.</p>\n<p>Processing is asynchronous.</p>\n","urlObject":{"path":["accounts","{{account_id}}","euicc_cards","{{eid}}","profiles","download"],"host":["https://api.connectedyou.io/v1"],"query":[{"disabled":true,"description":{"content":"<p>choices: NOW, NEXT_NETWORK_EVENT</p>\n<p>NOW- &gt; execute at the time of creation</p>\n<p>NEXT_NETWORK_EVENT -&gt; will be queued until next network event</p>\n","type":"text/plain"},"key":"execute_on","value":"NOW"}],"variable":[]}},"response":[{"id":"90594dff-465b-477f-bf13-52f750ec19e2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"enable_profile\":false,\r\n    \"iccid\":\"xyz\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/download"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 05:53:38 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"190"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Request has been accepted to download profile on the Card.\",\n    \"resource_id\": 4462,\n    \"resource_url\": \"url\"\n}"},{"id":"a4e7a51e-d6c1-44d5-b3fb-195482b2166d","name":"Failure - profile not found","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"enable_profile\":true,\r\n    \"iccid\":\"xyz\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/download"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:28:07 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"31"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Profile not found.\"\n}"},{"id":"0797a07e-671e-42de-b705-e042495b9d48","name":"Failure - Invalid EID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"enable_profile\":true,\r\n    \"iccid\":\"xyz\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/566/profiles/download"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:29:00 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"28"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Card not found.\"\n}"},{"id":"4e936a6f-1faa-40e0-a9ec-6a4cbbadc15b","name":"Failure - Invalid type of enable_profile field","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"enable_profile\":\"ghhsd\",\r\n    \"iccid\":\"xyz\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/download"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 07:42:14 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"47"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"enable_profile\": [\n        \"Must be a valid boolean.\"\n    ]\n}"},{"id":"acd54ef1-9958-4c3d-9718-484c2459abca","name":"Failure - Invalid type of iccid field","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"enable_profile\":true,\r\n    \"iccid\":true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/download"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 07:47:56 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"33"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"iccid\": [\n        \"Not a valid string.\"\n    ]\n}"}],"_postman_id":"e3d43122-d1af-471d-91fe-43d82660244b"},{"name":"Download Profile from Pool","id":"6d333298-9e0e-4bc7-bf7c-395f13ff16ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"enable_profile\":false,\r\n    \"pool_id\":12\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/download","description":"<p>Request for an ICCID to be Downloaded from a specific Pool to a specific eUICC Card (EID).</p>\n<p>The pool_id value can be found from the \"List Profile Pools\" API.</p>\n<p>Processing is asynchronous.</p>\n","urlObject":{"path":["accounts","{{account_id}}","euicc_cards","{{eid}}","profiles","download"],"host":["https://api.connectedyou.io/v1"],"query":[{"disabled":true,"description":{"content":"<p>choices: NOW, NEXT_NETWORK_EVENT</p>\n<p>NOW- &gt; execute at the time of creation</p>\n<p>NEXT_NETWORK_EVENT -&gt; will be queued until next network event</p>\n","type":"text/plain"},"key":"execute_on","value":"NOW"}],"variable":[]}},"response":[{"id":"671b771f-6afd-4d44-b7d6-e1b6875f347b","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"enable_profile\":false,\r\n    \"pool_id\":12\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/download"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 05:53:38 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"190"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Request has been accepted to download profile on the Card.\",\n    \"resource_id\": 4462,\n    \"resource_url\": \"url\"\n}"},{"id":"b13c4dad-8313-4e0f-8e9b-e21d87a710dd","name":"Failure - Invalid Pool id","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"enable_profile\":false,\r\n    \"pool_id\":12\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/download"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 07:38:34 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"31"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Pool id not found.\"\n}"},{"id":"4a8146ee-b11e-4331-a1a9-c208d61d9395","name":"Failure - Invalid EID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"enable_profile\":false,\r\n    \"pool_id\":12\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/download"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 07:40:14 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"28"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Card not found.\"\n}"},{"id":"e3f110e6-b11f-4ff7-baa8-60690ebd508d","name":"Failure - Invalid type of enable_profile field","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"enable_profile\":\"hjj\",\r\n    \"pool_id\":12\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/download"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 08:00:51 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"47"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"enable_profile\": [\n        \"Must be a valid boolean.\"\n    ]\n}"},{"id":"98b620ef-8442-4ba2-ae0d-30dd2784a8b1","name":"Failure - Invalid type of pool_id field","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"enable_profile\":true,\r\n    \"pool_id\":true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/download"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 08:02:05 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"44"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"pool_id\": [\n        \"A valid integer is required.\"\n    ]\n}"}],"_postman_id":"6d333298-9e0e-4bc7-bf7c-395f13ff16ea"},{"name":"Delete Profile","id":"c177079c-3fed-4a53-a70d-39aa4960e596","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/{{iccid}}/delete","description":"<p>Request to Delete a specific ICCID from a specific eUICC Card (EID).</p>\n<p>Processing is asynchronous.</p>\n","urlObject":{"path":["accounts","{{account_id}}","euicc_cards","{{eid}}","profiles","{{iccid}}","delete"],"host":["https://api.connectedyou.io/v1"],"query":[{"disabled":true,"description":{"content":"<p>choices: NOW, NEXT_NETWORK_EVENT</p>\n<p>NOW- &gt; execute at the time of creation</p>\n<p>NEXT_NETWORK_EVENT -&gt; will be queued until next network event</p>\n","type":"text/plain"},"key":"execute_on","value":"NOW"}],"variable":[]}},"response":[{"id":"33d068d6-7332-4363-a431-ea5980268cc7","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/{{iccid}}/set_fallback"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 05:46:56 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"194"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Request has been accepted to delete profile from the Card.\",\n    \"resource_id\": 4460,\n    \"resource_url\": \"url\"\n}"},{"id":"e8489591-5d27-43cb-8d04-1a2ce86019c5","name":"Failure - Invalid ICCID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/{{iccid}}/delete"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:30:03 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"31"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Profile not found.\"\n}"},{"id":"63469adc-6d6e-40ea-934c-532380348ae2","name":"Failure - ICCID not linked with card","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/{{iccid}}/delete"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:31:09 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"49"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Profile is not linked with the Card.\"\n}"},{"id":"48bf12fe-94df-4638-b243-54dfae1f7809","name":"Failure - Invalid EID","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles/{{iccid}}/delete"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:31:40 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"28"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Card not found.\"\n}"}],"_postman_id":"c177079c-3fed-4a53-a70d-39aa4960e596"}],"id":"97762c2b-390f-44b5-b98a-ead7438244cc","_postman_id":"97762c2b-390f-44b5-b98a-ead7438244cc","description":""},{"name":"List eUICC Cards","id":"1dc57c39-195c-48bc-bbb6-cfcc88a25e91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards","description":"<p>List the eUICC Cards (EIDs), for a specific account.</p>\n","urlObject":{"path":["accounts","{{account_id}}","euicc_cards"],"host":["https://api.connectedyou.io/v1"],"query":[{"disabled":true,"description":{"content":"<p>filter on provider</p>\n","type":"text/plain"},"key":"provider","value":"xyz"},{"disabled":true,"description":{"content":"<p>filter on enabled sim profile</p>\n","type":"text/plain"},"key":"enabled_sim_profile","value":"xyz"},{"disabled":true,"description":{"content":"<p>Choices: Cloud, SAS</p>\n","type":"text/plain"},"key":"rsp_platform","value":"xyz"},{"disabled":true,"description":{"content":"<p>sort on all fields (for desc order use \"-\" as prefix with the value)</p>\n","type":"text/plain"},"key":"sort","value":"xyz"},{"disabled":true,"description":{"content":"<p>filter on iccid</p>\n","type":"text/plain"},"key":"enabled_iccid","value":"xyz"},{"disabled":true,"description":{"content":"<p>filter on eid</p>\n","type":"text/plain"},"key":"eid","value":"xyz"},{"disabled":true,"description":{"content":"<p>filter on imsi</p>\n","type":"text/plain"},"key":"imsi","value":"xyz"},{"disabled":true,"description":{"content":"<p>choices: Standard Plugin, Industrial MFF2, Automotive MFF2</p>\n","type":"text/plain"},"key":"sim_type","value":"Standard Plugin"},{"disabled":true,"description":{"content":"<p>limit the number of fetched records</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>specifying where to start a page</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"ad354106-66d9-4216-94b8-993803f81adb","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","euicc_cards"],"query":[{"key":"provider","value":"xyz","description":"filter on provider","disabled":true},{"key":"enabled_sim_profile","value":"xyz","description":"filter on enabled sim profile","type":"text","disabled":true},{"key":"sim_type","value":"Standard Plugin","description":"choices: Standard Plugin, Industrial MFF2, Automotive MFF2","type":"text","disabled":true},{"key":"rsp_platform","value":"xyz","description":"Choices: Cloud, SAS","disabled":true},{"key":"sort","value":"xyz","description":"sort on all fields in response","disabled":true},{"key":"limit","value":"10","description":"limit the number of fetched records","type":"text","disabled":true},{"key":"offset","value":"0","description":"specifying where to start a page","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 06:17:29 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"601"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"euicc_cards\": [\n        {\n            \"account_id\": 500000000,\n            \"account_name\": \"string\",\n            \"eid\": \"string\",\n            \"sim_type\": \"string\",\n            \"tags\": [\n                {\n                    \"id\": 535,\n                    \"name\": \"test\"\n                }\n            ],\n            \"number_of_profiles\": \"number\",\n            \"network_imei\": \"string\",\n            \"user_defined_imei\": \"string\",\n            \"lock_imei\": \"string\",\n            \"imei_lock_type\": \"string\",\n            \"imei_lock_enabled\": false,\n            \"rsp_platform\": \"string\",\n            \"last_transaction_operation_type\": \"string\",\n            \"last_transaction_status\": \"string\",\n            \"last_transaction_created_at\": null,\n            \"profiles\": [\n                {\n                    \"iccid\": \"string\",\n                    \"billing_status\": \"string\",\n                    \"bootstrap\": true,\n                    \"fallback\": true,\n                    \"euicc_status\": \"string\",\n                    \"imsi\": \"string\",\n                    \"provider\": \"string\",\n                    \"sim_profile\": \"string\",\n                    \"country_name\": \"string\",\n                    \"network_operator_name\": \"string\",\n                    \"recommended_apn\": \"string\",\n                    \"msisdn\": \"string\",\n                    \"provision_date\": \"2022-11-14T15:42:07.986622Z\",\n                    \"last_seen_at\": null,\n                    \"enabled_at\": null,\n                    \"last_billing_status_at\": \"2022-11-14T15:42:08.503300Z\"\n                }\n            ]\n        }\n    ],\n    \"limit\": 1,\n    \"offset\": 0,\n    \"total\": 13628\n}"}],"_postman_id":"1dc57c39-195c-48bc-bbb6-cfcc88a25e91"},{"name":"eUICC Card Profiles","id":"6da2817b-e1f7-44a0-9150-09e27833fedb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles","description":"<p><strong>Note:</strong> please use the <a href=\"https://docs.api.connectedyou.io/#31064155-780d-43b9-8363-b9df0b983b7d\">Card Profile API</a> instead; it has the same information without burdening the backing RSP infrastructure. This eUICC API should only be used if you have to <em>force</em> an alignment with the backing RSP. In normal operations there is no need to do this.</p>\n<blockquote>\n<p><strong>Rate Limit:</strong> 2 requests per second per account to protect the backing RSP platforms </p>\n</blockquote>\n<p>Get the list of eUICC Card Profiles for a specific card (EID).</p>\n","urlObject":{"path":["accounts","{{account_id}}","euicc_cards","{{eid}}","profiles"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"0986ce6f-574c-4e97-a53f-fc53e2c0bff4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 18 Oct 2024 07:26:44 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.11.4"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"1600"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"created_at\": \"2021-05-04T12:59:44.852236Z\",\n    \"eid\": \"89034011014200000000000000513032\",\n    \"imei_lock_enabled\": false,\n    \"imei_lock_type\": \"None\",\n    \"lock_imei\": null,\n    \"network_imei\": null,\n    \"number_of_profiles\": 3,\n    \"rsp_platform\": \"Cloud\",\n    \"sim_type\": \"Standard Plugin\",\n    \"tags\": [],\n    \"updated_at\": \"2024-09-05T07:01:27.624764Z\",\n    \"user_defined_imei\": null,\n    \"ha_configured\": false,\n    \"profiles\": [\n        {\n            \"iccid\": \"89972114250100021623\",\n            \"billing_status\": \"READY\",\n            \"bootstrap\": false,\n            \"fallback\": false,\n            \"euicc_status\": \"DISABLED\",\n            \"imsi\": \"425019700002162\",\n            \"provider\": \"MONOGOTO\",\n            \"sim_profile\": \"CYMG02\",\n            \"country_name\": null,\n            \"network_operator_name\": null,\n            \"recommended_apn\": \"data.mono\",\n            \"msisdn\": \"972555091825\",\n            \"provision_date\": \"2022-12-22T05:38:49.540345Z\",\n            \"last_seen_at\": null,\n            \"last_billing_status_at\": \"2022-12-22T05:38:49.571078Z\",\n            \"rsp_platform\": \"Cloud\",\n            \"profile_type\": \"Soft Profile\",\n            \"ha_configured\": false\n        },\n        {\n            \"iccid\": \"893107032000748105\",\n            \"billing_status\": \"ACTIVE\",\n            \"bootstrap\": false,\n            \"fallback\": true,\n            \"euicc_status\": \"ENABLED\",\n            \"imsi\": \"901540000748105\",\n            \"provider\": \"TATA\",\n            \"sim_profile\": \"CYTA04\",\n            \"country_name\": null,\n            \"network_operator_name\": null,\n            \"recommended_apn\": \"move.dataxs.mobi\",\n            \"msisdn\": \"31637916043\",\n            \"provision_date\": \"2022-06-04T13:44:20.281970Z\",\n            \"last_seen_at\": null,\n            \"last_billing_status_at\": \"2020-10-09T21:22:10Z\",\n            \"rsp_platform\": \"Cloud\",\n            \"profile_type\": \"Soft Profile\",\n            \"ha_configured\": false\n        }\n    ],\n    \"last_transaction\": {\n        \"ongoing_transaction\": false,\n        \"operation_text\": \"Delete 8910300000003625841\",\n        \"last_transaction_status\": \"FAILED\"\n    },\n    \"is_ha_configured_allowed\": false\n}"},{"id":"c5981cb6-79ad-4b81-b417-ed089cf5108b","name":"Failure -  Invalid EID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/euicc_cards/{{eid}}/profiles","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","euicc_cards","{{eid}}","profiles"],"query":[{"key":"provider","value":"xyz","description":"filter on provider","disabled":true},{"key":"enabled_sim_profile","value":"xyz","description":"filter on enabled sim profile","type":"text","disabled":true},{"key":"rsp_platform","value":"xyz","description":"choices: Cloud, SAS","disabled":true}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:09:47 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"27"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Card not found\"\n}"}],"_postman_id":"6da2817b-e1f7-44a0-9150-09e27833fedb"},{"name":"List Soft Profiles","id":"76fd3704-2c4d-40c7-a5cb-efee2a39988a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/soft_profiles?limit=10","description":"<p>List the soft Profiles in a specific account.</p>\n","urlObject":{"path":["accounts","{{account_id}}","soft_profiles"],"host":["https://api.connectedyou.io/v1"],"query":[{"description":{"content":"<p>limit the results on the query</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>offset the search result</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>filter on iccid</p>\n","type":"text/plain"},"key":"iccid","value":"xyz"},{"disabled":true,"description":{"content":"<p>filter on billing_state field (READY/ACTIVE/SUSPENDED/TERMINATED)</p>\n","type":"text/plain"},"key":"billing_status","value":"READY"},{"disabled":true,"description":{"content":"<p>iccid, -iccid, provision_date, -provision_date, imsi, -imsi</p>\n","type":"text/plain"},"key":"sort","value":"provider"},{"disabled":true,"key":"rsp_platform","value":"Cloud/SAS"}],"variable":[]}},"response":[{"id":"b761490b-e6e9-4e48-ac7f-e1d649932acb","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/soft_profiles?limit=1","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","soft_profiles"],"query":[{"key":"limit","value":"1","description":"limit the results on the query"},{"key":"offset","value":"0","description":"offset the search result","disabled":true},{"key":"iccid","value":"xyz","description":"filter on iccid","type":"text","disabled":true},{"key":"billing_status","value":"READY","description":"filter on billing_state field (READY/ACTIVE/SUSPENDED/TERMINATED)","type":"text","disabled":true},{"key":"sort","value":"provider","description":"iccid, -iccid, provision_date, -provision_date, imsi, -imsi","disabled":true},{"key":"rsp_platform","value":"Cloud/SAS","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Sep 2023 12:31:22 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.11.4"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"3615"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"profiles\": [\n        {\n            \"account_id\": 500000000,\n            \"account_name\": \"string\",\n            \"iccid\": \"string\",\n            \"billing_status\": \"string\",\n            \"imsi\": \"string\",\n            \"msisdn\": \"string\",\n            \"provider\": \"string\",\n            \"sim_profile\": \"string\",\n            \"profile_pools\": [\n                {\n                    \"id\": 9,\n                    \"pool_name\": \"string\"\n                }\n            ],\n            \"rsp_platform\": \"string\",\n            \"provision_date\": \"2022-12-28T13:22:20.434160Z\"\n        }\n    ],\n    \"limit\": 1,\n    \"offset\": 0,\n    \"total\": 1753\n}"}],"_postman_id":"76fd3704-2c4d-40c7-a5cb-efee2a39988a"},{"name":"List Profile Pools","id":"b7528c3c-37e4-4693-864d-2deb762c8820","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profile_pools?limit=10","description":"<p>List the Profile Pools of a specific account.</p>\n","urlObject":{"path":["accounts","{{account_id}}","profile_pools"],"host":["https://api.connectedyou.io/v1"],"query":[{"description":{"content":"<p>limit the results on the query</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>offset the search result</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>pool_name</p>\n","type":"text/plain"},"key":"sort","value":"-pool_name"}],"variable":[]}},"response":[{"id":"60167233-4e16-4168-81a9-7859c028ef42","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profile_pools?limit=10","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","profile_pools"],"query":[{"key":"limit","value":"10","description":"limit the results on the query"},{"key":"offset","value":"0","description":"offset the search result","disabled":true},{"key":"sort","value":"-pool_name","description":"sort on pool_name","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Sep 2023 11:36:49 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.11.4"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"173"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"profile_pools\": [\n        {\n            \"id\": 12,\n            \"pool_name\": \"string\",\n            \"is_deleted\": false\n        },\n        {\n            \"id\": 9,\n            \"pool_name\": \"string\",\n            \"is_deleted\": false\n        }\n    ],\n    \"limit\": 10,\n    \"offset\": 0,\n    \"total\": 2\n}"}],"_postman_id":"b7528c3c-37e4-4693-864d-2deb762c8820"}],"id":"de9601e0-cbd2-4c13-b461-6cb0ea1b5942","description":"<p>APIs to perform Subscription Management (RSP) Operations and manage eUICC capabile SIMs.</p>\n","_postman_id":"de9601e0-cbd2-4c13-b461-6cb0ea1b5942"},{"name":"Bulk Operations","item":[{"name":"Bulk Operation Detail","id":"b7737670-35a0-4308-aab4-6daae8a8e7fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/bulk_operations/{{bulk_operation_id}}","description":"<p>Fetch detail of a specific Bulk Operation.</p>\n","urlObject":{"path":["accounts","{{account_id}}","bulk_operations","{{bulk_operation_id}}"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"186f8690-461c-4ee0-a96e-67c7026fe7d5","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/bulk_operations/{{bulk_operation_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Jun 2023 09:17:54 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.11.4"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"511"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4463,\n    \"name\": \"string\",\n    \"account\": \"number\",\n    \"bulk_operation_type\": \"string\",\n    \"created_at\": \"2023-05-23T05:54:57.369359Z\",\n    \"metadata\": {},\n    \"description\": \"string\",\n    \"email\": \"string\",\n    \"status\": \"string\",\n    \"total_tasks\": 1,\n    \"tasks_completed\": 1,\n    \"tasks_remaining\": 0,\n    \"total_tasks_failed\": 0,\n    \"total_tasks_rejected\": 0,\n    \"total_tasks_succeeded\": 1,\n    \"total_tasks_cancelled\": 0,\n    \"total_task_queued\": 0,\n    \"updated_at\": \"2023-06-07T09:25:10.113409Z\"\n}"},{"id":"2fce0ddb-87e2-45d5-9df1-b35bbee9f6e2","name":"Failure - Invalid Bulk Operation ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/bulk_operations/{{bulk_operation_id}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:33:42 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"38"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Bulk operation not found.\"\n}"}],"_postman_id":"b7737670-35a0-4308-aab4-6daae8a8e7fd"},{"name":"Bulk Operation Transactions","id":"e47bf804-50fd-4a02-bb14-a5e356297f33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/bulk_operations/{{bulk_operation_id}}/transactions","description":"<p>Lists transactions related toa specific Bulk Operation</p>\n","urlObject":{"path":["accounts","{{account_id}}","bulk_operations","{{bulk_operation_id}}","transactions"],"host":["https://api.connectedyou.io/v1"],"query":[{"disabled":true,"key":"limit","value":"4"},{"disabled":true,"key":"iccid","value":"xyz"},{"disabled":true,"key":"eid","value":"xyz"},{"disabled":true,"description":{"content":"<p>choices: SUCCESS, IN_PROGRESS, PENDING, REJECTED, QUEUED, CANCELLED</p>\n","type":"text/plain"},"key":"status","value":"SUCCESS"},{"disabled":true,"description":{"content":"<p>choices: iccid, eid, status, created_at, updated_at</p>\n","type":"text/plain"},"key":"sort","value":"-iccid"}],"variable":[]}},"response":[{"id":"5ec4d935-f0cf-45e2-8de8-8a4579e86984","name":"Change billing status transaction","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/bulk_operations/{{bulk_operation_id}}/transactions","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","bulk_operations","{{bulk_operation_id}}","transactions"],"query":[{"key":"limit","value":"4","type":"text","disabled":true},{"key":"iccid","value":"xyz","type":"text","disabled":true},{"key":"eid","value":"xyz","type":"text","disabled":true},{"key":"status","value":"SUCCESS","type":"text","description":"choices: SUCCESS, IN_PROGRESS, PENDING, REJECTED, QUEUED, CANCELLED","disabled":true},{"key":"sort","value":"-iccid","description":"choices: iccid,eid,status,created_at,updated_at","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 11:05:22 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.11.4"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"2338"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"number\",\n    \"name\": \"Change billing status\",\n    \"account\": \"number\",\n    \"bulk_operation_type\": \"CHANGE_BILLING_STATUS\",\n    \"created_at\": \"2023-03-20T11:43:32.717950Z\",\n    \"metadata\": {\n        \"rule_meta\": null,\n        \"forced_update\": false,\n        \"target_status\": \"TERMINATED\"\n    },\n    \"description\": \"Target status: TERMINATED\",\n    \"email\": \"string\",\n    \"status\": \"COMPLETED\",\n    \"total_tasks\": 1,\n    \"tasks_completed\": 1,\n    \"tasks_remaining\": 0,\n    \"total_tasks_failed\": 0,\n    \"total_tasks_rejected\": 0,\n    \"total_tasks_succeeded\": 1,\n    \"total_tasks_cancelled\": 0,\n    \"total_task_queued\": 0,\n    \"updated_at\": \"2023-03-20T11:43:32.867078Z\",\n    \"transactions\": [\n        {\n            \"id\": 91148,\n            \"created_at\": \"2023-03-20T11:43:32.839988Z\",\n            \"eid\": \"string\",\n            \"iccid\": \"string\",\n            \"max_retries\": 0,\n            \"message\": \"Request is completed successfully.\",\n            \"operation_type\": \"CHANGE_BILLING_STATUS\",\n            \"status\": \"SUCCESS\",\n            \"updated_at\": \"2023-03-20T11:43:32.840413Z\",\n            \"gsma_subject_code\":null,\n            \"gsma_reason_code\":null\n        }\n    ],\n    \"limit\": 50,\n    \"offset\": 0,\n    \"total\": 1\n}"},{"id":"9fafecf4-5849-4103-8c92-4ff315cf8d93","name":"Other transactions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/bulk_operations/{{bulk_operation_id}}/transactions","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","bulk_operations","{{bulk_operation_id}}","transactions"],"query":[{"key":"limit","value":"4","type":"text","disabled":true},{"key":"iccid","value":"xyz","type":"text","disabled":true},{"key":"eid","value":"xyz","type":"text","disabled":true},{"key":"status","value":"SUCCESS","type":"text","description":"choices: SUCCESS, IN_PROGRESS, PENDING, REJECTED, QUEUED, CANCELLED","disabled":true},{"key":"sort","value":"-iccid","description":"choices: iccid,eid,status,created_at,updated_at","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 11:11:34 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.11.4"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"880"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4423,\n    \"name\": \"string\",\n    \"account\": \"number\",\n    \"bulk_operation_type\": \"string\",\n    \"created_at\": \"2023-05-23T05:54:57.369359Z\",\n    \"metadata\": {},\n    \"description\": \"string\",\n    \"email\": \"string\",\n    \"status\": \"string\",\n    \"total_tasks\": 1,\n    \"tasks_completed\": 1,\n    \"tasks_remaining\": 0,\n    \"total_tasks_failed\": 0,\n    \"total_tasks_rejected\": 0,\n    \"total_tasks_succeeded\": 1,\n    \"total_tasks_cancelled\": 0,\n    \"total_task_queued\": 0,\n    \"updated_at\": \"2023-06-07T09:25:10.113409Z\",\n    \"transactions\": [\n        {\n            \"id\": 91192,\n            \"created_at\": \"2023-05-23T05:54:57.519021Z\",\n            \"eid\": \"string\",\n            \"iccid\": \"string\",\n            \"max_retries\": 3,\n            \"message\": \"string\",\n            \"operation_type\": \"string\",\n            \"status\": \"string\",\n            \"updated_at\": \"2023-05-23T05:56:24.554549Z\",\n            \"gsma_subject_code\":\"string\",\n            \"gsma_reason_code\":\"string\"\n        }\n    ],\n    \"limit\": 50,\n    \"offset\": 0,\n    \"total\": 1\n}"},{"id":"22074bcc-a57a-464e-959f-9733baf6092b","name":"Failure - Invalid Bulk Operation ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/bulk_operations/{{bulk_operation_id}}/transactions","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","bulk_operations","{{bulk_operation_id}}","transactions"],"query":[{"key":"limit","value":"4","type":"text","disabled":true},{"key":"iccid","value":"xyz","type":"text","disabled":true},{"key":"eid","value":"xyz","type":"text","disabled":true},{"key":"status","value":"SUCCESS","type":"text","description":"choices: SUCCESS, IN_PROGRESS, PENDING, REJECTED, QUEUED, CANCELLED","disabled":true},{"key":"sort","value":"-iccid","description":"choices: iccid,eid,status,created_at,updated_at","disabled":true}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:34:14 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"38"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Bulk operation not found.\"\n}"}],"_postman_id":"e47bf804-50fd-4a02-bb14-a5e356297f33"}],"id":"ae208809-b48b-4035-b966-7642762db9b5","_postman_id":"ae208809-b48b-4035-b966-7642762db9b5","description":""},{"name":"Tags","item":[{"name":"Tag List","id":"d1e7535d-2f4c-4a96-ac66-4dedc562de59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/tags?search=Tag1","description":"<p>Get list of tags for an account</p>\n","urlObject":{"path":["accounts","{{account_id}}","tags"],"host":["https://api.connectedyou.io/v1"],"query":[{"key":"search","value":"Tag1"},{"disabled":true,"key":"sort","value":"name"},{"disabled":true,"key":"sort","value":"description"},{"disabled":true,"key":"sort","value":"-created_at"},{"disabled":true,"key":"sort","value":"updated_at"},{"disabled":true,"key":"name","value":"Tag1"},{"disabled":true,"key":"limit","value":"100"}],"variable":[]}},"response":[{"id":"e80bda07-6571-4378-9c9d-419e1f7ec507","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://api.connectedyou.io/v1/accounts/{{account_id}}/tags?search=Tag1","host":["https://api.connectedyou.io/v1"],"path":["accounts","{{account_id}}","tags"],"query":[{"key":"search","value":"Tag1"},{"key":"sort","value":"name","type":"text","disabled":true},{"key":"sort","value":"description","type":"text","disabled":true},{"key":"sort","value":"-created_at","type":"text","disabled":true},{"key":"sort","value":"updated_at","type":"text","disabled":true},{"key":"name","value":"Tag1","type":"text","disabled":true},{"key":"limit","value":"100","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Mar 2025 09:55:10 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.12.7"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"267"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"tags\": [\n        {\n            \"account_id\": 1806568956,\n            \"account_name\": \"ConnectedYou\",\n            \"id\": 1855,\n            \"name\": \"Tag1\",\n            \"description\": \"Tag for sim test\",\n            \"created_at\": \"2025-03-12T07:30:30.861695Z\",\n            \"updated_at\": \"2025-03-12T07:30:30.861926Z\"\n        }\n    ],\n    \"limit\": 50,\n    \"offset\": 0,\n    \"total\": 1\n}"}],"_postman_id":"d1e7535d-2f4c-4a96-ac66-4dedc562de59"},{"name":"Create New Tag","id":"766d3775-1da9-4eb8-adc7-a1f43d41c954","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"name\": \"Tag1\",\r\n    \"description\":\"Tag for sim test\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/tags","description":"<p>Create New Tags for SIM Profiles or SIM Cards (EID)</p>\n","urlObject":{"path":["accounts","{{account_id}}","tags"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"52e734bc-ead2-44d3-a75a-c842f706a2b8","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiJOSUk3Uk5aN2NDdHRmMzNVdkt3cFU0aDZKMWNNQkRHSjBUSnpJYk9cLzR4Yz0iLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiNDI1YzhiOS04YWZlLTRlODYtOWJlMC00...","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"name\": \"Tag1\",\r\n    \"description\":\"Tag for sim test\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8000/v1/accounts/247467927/tags"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Mar 2025 07:16:28 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.12.7"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"203"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"account_id\": 1806568956,\n    \"account_name\": \"ConnectedYou\",\n    \"id\": 1855,\n    \"name\": \"Tag1\",\n    \"description\": \"Tag for sim test\",\n    \"created_at\": \"2025-03-12T07:30:30.861695Z\",\n    \"updated_at\": \"2025-03-12T07:30:30.861926Z\"\n}"},{"id":"1d4b0df0-37a5-4c35-9732-fa650df04e2e","name":"Failure - Tag name already exist","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"name\": \"Tag1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/tags"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Mar 2025 07:21:59 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.12.7"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"53"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Tag name already exist with this account\"\n}"}],"_postman_id":"766d3775-1da9-4eb8-adc7-a1f43d41c954"},{"name":"Add Tags to SIM Profile","id":"06babc17-9027-4aef-89c1-782621865aa9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"tag_ids\":[5,8,6]\r\n}"},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/tags","description":"<p>Add tags to SIM Profile in a given account.</p>\n<p>Listing tags can be done using List or SIM Profile Detail APIs.</p>\n","urlObject":{"path":["accounts","{{account_id}}","profiles","{{iccid}}","tags"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"cb325430-2ad3-453c-9b4c-3c318e64bdc4","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"tag_ids\":[535,1286,1126]\r\n}"},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 05:27:42 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"98"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Success\",\n    \"tags_added\": [\n        1286\n    ],\n    \"tags_already_exist\": [\n        535\n    ],\n    \"tags_not_found\": [\n        1126\n    ]\n}"},{"id":"b28c40a0-6ea7-4f15-b813-58d15f574735","name":"Failure - Invalid ICCID","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"tag_ids\":[5,8,6]\r\n}"},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/tags"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 04:54:44 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"26"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Invalid ICCID\"\n}"},{"id":"1cf6597a-9945-4533-85d8-0ab00a7d1ed5","name":"Failure - Invalid field in adding tag_ids","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"ta_ids\":[5,8,685566655]\r\n}"},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/tags"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 04:59:06 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"39"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"tag_ids\": [\n        \"This field is required.\"\n    ]\n}"},{"id":"6d3e3188-f67e-44a5-b04c-2af5251cfaa5","name":"Failure - Invalid tag_ids field","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"tag_ids\":[true,8,6]\r\n}"},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/tags"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 07:53:34 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"50"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"tag_ids\": {\n        \"0\": [\n            \"A valid integer is required.\"\n        ]\n    }\n}"}],"_postman_id":"06babc17-9027-4aef-89c1-782621865aa9"},{"name":"Remove Tags from SIM Profile","id":"7a6a6a8d-6501-4402-af0e-0b9348b59300","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"tag_ids\":[5,6]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/tags","description":"<p>Remove tags from a SIM Profile in a given account.</p>\n<p>Listing tags can be done using List or SIM Profile Detail APIs.</p>\n","urlObject":{"path":["accounts","{{account_id}}","profiles","{{iccid}}","tags"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"1cde7ac7-e16d-4d16-b0a1-cf23cb53bc00","name":"Success","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"tag_ids\":[535,78]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 May 2023 05:28:29 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.9"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"21"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Success\"\n}"},{"id":"30c68026-d501-47d6-accd-fa86f48694b7","name":"Failure - Invalid ICCID","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"tag_ids\":[535,78]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/tags"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:00:47 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"26"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Invalid ICCID\"\n}"},{"id":"f760d60d-6d0d-4f4b-abab-ee6f08e51b80","name":"Failure - Inavlid tag_ids field in deleting from profile","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"ta_ids\":[535,78]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/{{iccid}}/tags"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 05:02:21 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"39"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"tag_ids\": [\n        \"This field is required.\"\n    ]\n}"},{"id":"0e3e4560-8d9f-49a7-8b67-d47b5939c3e0","name":"Failure - Invalid value type for tag_ids","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"tag_ids\":[5,true]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/profiles/8910300000001722074/tags"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Sep 2023 07:58:52 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.10.12"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"50"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"tag_ids\": {\n        \"1\": [\n            \"A valid integer is required.\"\n        ]\n    }\n}"}],"_postman_id":"7a6a6a8d-6501-4402-af0e-0b9348b59300"},{"name":"Add Tags to SIM Card","id":"2d7dce3e-de05-48d8-b07c-ebb9ab2c0662","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"tag_ids\":[5,8,6]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}/tags","description":"<p>Add tags to SIM Card in a given account.</p>\n<p>Listing tags can be done using List or SIM Card Detail APIs.</p>\n","urlObject":{"path":["accounts","{{account_id}}","cards","{{eid}}","tags"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"0de5fd83-708f-49ce-a299-ff939c77d314","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"tag_ids\":[1030,1295,9566]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Mar 2025 06:43:23 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.12.7"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"99"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Success\",\n    \"tags_added\": [\n        1295\n    ],\n    \"tags_already_exist\": [\n        1030\n    ],\n    \"tags_not_found\": [\n        9566\n    ]\n}"},{"id":"e5350583-b546-4a35-a7c7-bc08e56ff2ca","name":"Failure - Invalid EID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"tag_ids\":[535,1286,1126]\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}/tags"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Mar 2025 06:28:26 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.12.7"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"24"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Invalid EID\"\n}"},{"id":"92d59101-d43d-4107-9f35-e31fcb3f2f1c","name":"Failure - Invalid field in adding tag_ids","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n     \"ta_ids\":[5,8,685566655]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}/tags"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Mar 2025 06:33:10 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.12.7"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"39"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"tag_ids\": [\n        \"This field is required.\"\n    ]\n}"},{"id":"252f8284-e22f-496d-9cca-8d420009bc69","name":"Failure - Invalid tag_ids field","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"tag_ids\":[true,8,6]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}/tags"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Mar 2025 06:38:53 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.12.7"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"50"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"tag_ids\": {\n        \"0\": [\n            \"A valid integer is required.\"\n        ]\n    }\n}"}],"_postman_id":"2d7dce3e-de05-48d8-b07c-ebb9ab2c0662"},{"name":"Remove Tags from SIM Card","id":"60227ef5-f0a4-45c9-bbb5-d167018c0bed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"tag_ids\":[5,6]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}/tags","description":"<p>Remove tags from a SIM Card in a given account.</p>\n<p>Listing tags can be done using List or SIM Card Detail APIs.</p>\n","urlObject":{"path":["accounts","{{account_id}}","cards","{{eid}}","tags"],"host":["https://api.connectedyou.io/v1"],"query":[],"variable":[]}},"response":[{"id":"3408b36b-4b39-4073-8595-8eae2c557703","name":"Success","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"tag_ids\":[1030,1295]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Mar 2025 06:59:08 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.12.7"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"21"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Success\"\n}"},{"id":"16c7e087-c2a3-4d20-94dc-75f64c58e65e","name":"Failure - Invalid EID","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"tag_ids\":[1030,1295]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}/tags"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Mar 2025 07:01:22 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.12.7"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"24"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Invalid EID\"\n}"},{"id":"8297d33d-cc90-4da6-9de1-82e91d8efd7f","name":"Failure - Inavlid tag_ids field in deleting from card","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"ta_ids\":[5,8,685566655]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}/tags"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Mar 2025 07:03:30 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.12.7"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"39"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"tag_ids\": [\n        \"This field is required.\"\n    ]\n}"},{"id":"6c47097e-c53e-4f6a-be8c-f0abf5cef9bd","name":"Failure - Invalid value type for tag_ids","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"tag_ids\":[5,true]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.connectedyou.io/v1/accounts/{{account_id}}/cards/{{eid}}/tags"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Mar 2025 07:05:30 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.12.7"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"50"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Vary","value":"origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"tag_ids\": {\n        \"1\": [\n            \"A valid integer is required.\"\n        ]\n    }\n}"}],"_postman_id":"60227ef5-f0a4-45c9-bbb5-d167018c0bed"}],"id":"5769ade9-a59a-4759-84db-e6819015113b","_postman_id":"5769ade9-a59a-4759-84db-e6819015113b","description":""}],"event":[{"listen":"prerequest","script":{"id":"2c4bf8b5-6996-47bb-857a-8ebdffeb14a8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8eaf4c92-234b-4e09-b8d6-92175fb1b142","type":"text/javascript","exec":[""]}}],"variable":[{"key":"base_url","value":"https://api.connectedyou.io/v1","type":"string"},{"key":"Authorization","value":"eyJraWQiOiI5ZVZ0dlJ3U0p6Nlwvc0RBV0R4Y2Vmek","type":"string"}]}