openapi: 3.1.0 info: title: Treasury Prime Bank Accounts Persons API version: '1' description: 'REST API covering Accounts, Persons, Businesses, Cards, Payments (ACH, Wire, Book, Check), Transactions, Statements, and Webhooks across Treasury Prime''s network of sponsor banks. Endpoints derived from https://docs.treasuryprime.com/. ' contact: name: Treasury Prime url: https://developers.treasuryprime.com/ servers: - url: https://api.sandbox.treasuryprime.com description: Sandbox security: - BasicAuth: [] tags: - name: Persons paths: /person/{id}: get: tags: - Persons summary: Fetch a person parameters: - in: path name: id required: true schema: type: string responses: '200': description: Person patch: tags: - Persons summary: Update a person parameters: - in: path name: id required: true schema: type: string responses: '200': description: Updated components: securitySchemes: BasicAuth: type: http scheme: basic description: HTTP Basic Auth using API Key ID (username) and Secret (password).