openapi: 3.0.3 info: title: Atomic Access Tokens Users API description: Representative OpenAPI description of Atomic's payroll and financial connectivity API (UserLink and PayLink). Atomic lets applications switch direct deposit, verify income and employment, retrieve payroll data, and update payment methods on file through user-permissioned access. The Transact SDK is an embedded, hosted front-end launched with a publicToken that drives deposit, verify, and tax task workflows on top of these endpoints. This is a faithful, non-exhaustive representation authored by API Evangelist from public documentation, not an official Atomic artifact. termsOfService: https://atomicfi.com/legal contact: name: Atomic Support url: https://docs.atomicfi.com version: '1.0' servers: - url: https://api.atomicfi.com description: Production - url: https://sandbox-api.atomicfi.com description: Sandbox - url: https://pci.atomicfi.com description: Production PCI host (PayLink card data) - url: https://sandbox-pci.atomicfi.com description: Sandbox PCI host (PayLink card data) security: - ApiKeyAuth: [] tags: - name: Users paths: /user: put: operationId: updateUser tags: - Users summary: Update a user description: Stores destination bank accounts or cards to present during a task workflow. requestBody: required: true content: application/json: schema: $ref: '#/components/schemas/UpdateUserRequest' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/SuccessResult' /user/{identifier}/tasks: get: operationId: getUserTasks tags: - Users summary: Get a user's tasks parameters: - $ref: '#/components/parameters/IdentifierPath' - name: status in: query schema: type: string - name: payrollDataAvailable in: query schema: type: boolean responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/Task' /user/{identifier}/end-monitoring: put: operationId: endUserMonitoring tags: - Users summary: End monitoring for a user parameters: - $ref: '#/components/parameters/IdentifierPath' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/SuccessResult' components: schemas: Company: type: object properties: _id: type: string name: type: string status: type: string branding: type: object tags: type: array items: type: string Task: type: object properties: _id: type: string status: type: string enum: - queued - processing - completed - failed product: type: string authentication: type: string company: $ref: '#/components/schemas/Company' payrollDataAvailable: type: boolean createdAt: type: string format: date-time UpdateUserRequest: type: object required: - identifier properties: identifier: type: string data: type: object properties: bankAccounts: type: array items: type: object cards: type: array items: type: object SuccessResult: type: object properties: result: type: object properties: success: type: boolean success: type: boolean parameters: IdentifierPath: name: identifier in: path required: true description: Your unique identifier for the end user. schema: type: string securitySchemes: ApiKeyAuth: type: apiKey in: header name: x-api-key description: API Key sent in the x-api-key header, paired with the x-api-secret header. Used for backend-to-backend calls. PublicTokenAuth: type: apiKey in: header name: x-public-token description: Public token for permitted client-side requests.