{ "opencollection": "1.0.0", "info": { "name": "Evervault Card Account Updates API", "version": "0.0.1" }, "items": [ { "info": { "name": "Card Account Updates", "type": "folder" }, "items": [ { "info": { "name": "Register a Card", "type": "http" }, "http": { "method": "POST", "url": "https://api.evervault.com/payments/cards", "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "When registering a card, you can provide either an Evervault encrypted card number or a plaintext card number. If you provide a plaintext card number it will be encrypted and the encrypted value will be returned in the response.\n\nCard registration is idempotent on card number. Registering the same card number a second time returns the existing Card object, rather than creating a new one. This means you can use the Card object `id` as a unique identifier. If you register an existing card number b" }, { "info": { "name": "Retrieve a Card", "type": "http" }, "http": { "method": "GET", "url": "https://api.evervault.com/payments/cards/:card_id", "params": [ { "name": "card_id", "value": "", "type": "path", "description": "The unique identifier of the Card." } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Retrieves a Card by its unique identifier.\n" }, { "info": { "name": "Delete a Card", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.evervault.com/payments/cards/:card_id", "params": [ { "name": "card_id", "value": "", "type": "path", "description": "The unique identifier of the Card." } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Deletes a Card by its unique identifier.\n" }, { "info": { "name": "Simulate a Card Update", "type": "http" }, "http": { "method": "POST", "url": "https://api.evervault.com/payments/cards/:card_id/simulate", "params": [ { "name": "card_id", "value": "", "type": "path", "description": "The id of the Card" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Simulates an update to a Card so that you can test your Card Account Updater integration. This endpoint is only available for [Sandbox Apps](/developers/sandbox).\n" } ] } ], "bundled": true }