{ "opencollection": "1.0.0", "info": { "name": "Certifyos Payers API", "version": "1.0.0" }, "items": [ { "info": { "name": "Payers", "type": "folder" }, "items": [ { "info": { "name": "Get all payers", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/payers", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "name", "value": "", "type": "query", "description": "Optional name to filter the list of payers. The search is case-insensitive and partial." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns a list of payers for the provided tenant. The payers are returned sorted by creation date, with the most recent payers appearing first." }, { "info": { "name": "Create a new payer", "type": "http" }, "http": { "method": "POST", "url": "http://localhost:9000/payers", "headers": [ { "name": "tenant-id", "value": "" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Creates a new payer with the provided details" }, { "info": { "name": "Get a payer by ID", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/payers/:id", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the payer to retrieve" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieves a specific payer by its unique identifier" }, { "info": { "name": "Update an existing payer", "type": "http" }, "http": { "method": "PUT", "url": "http://localhost:9000/payers/:id", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "Payer identifier" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Updates a payer with the provided details" } ] } ], "bundled": true }