{ "opencollection": "1.0.0", "info": { "name": "TSYS Issuing Platform Accounts API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Accounts", "type": "folder" }, "items": [ { "info": { "name": "List Accounts", "type": "http" }, "http": { "method": "GET", "url": "https://issuing.api.tsys.com/v1/accounts", "params": [ { "name": "status", "value": "", "type": "query", "description": "Filter by account status" }, { "name": "page", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ] }, "docs": "Returns a paginated list of cardholder accounts in the program." }, { "info": { "name": "Create Account", "type": "http" }, "http": { "method": "POST", "url": "https://issuing.api.tsys.com/v1/accounts", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new cardholder account in the card program." }, { "info": { "name": "Get Account", "type": "http" }, "http": { "method": "GET", "url": "https://issuing.api.tsys.com/v1/accounts/:accountId", "params": [ { "name": "accountId", "value": "", "type": "path", "description": "Cardholder account identifier" } ] }, "docs": "Retrieve details for a specific cardholder account." }, { "info": { "name": "Update Account", "type": "http" }, "http": { "method": "PUT", "url": "https://issuing.api.tsys.com/v1/accounts/:accountId", "params": [ { "name": "accountId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update cardholder account details or status." }, { "info": { "name": "List Account Cards", "type": "http" }, "http": { "method": "GET", "url": "https://issuing.api.tsys.com/v1/accounts/:accountId/cards", "params": [ { "name": "accountId", "value": "", "type": "path" } ] }, "docs": "List all cards associated with a cardholder account." }, { "info": { "name": "Issue Card", "type": "http" }, "http": { "method": "POST", "url": "https://issuing.api.tsys.com/v1/accounts/:accountId/cards", "params": [ { "name": "accountId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Issue a new physical or virtual card for a cardholder account." } ] } ], "bundled": true }