Remitian · Capability

Remitian Tax Payment API — Accounts

Remitian Tax Payment API — Accounts. 3 operations. Lead operation: List client accounts. Self-contained Naftiko capability covering one Remitian business surface.

Run with Naftiko RemitianAccounts

What You Can Do

GET
Listaccounts — List client accounts
/v1/v1/accounts
POST
Createaccount — Create a client account
/v1/v1/accounts
GET
Getaccount — Retrieve a client account
/v1/v1/accounts/{accountid}

MCP Tools

list-client-accounts

List client accounts

read-only idempotent
create-client-account

Create a client account

retrieve-client-account

Retrieve a client account

read-only idempotent

Capability Spec

tax-payment-accounts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Remitian Tax Payment API — Accounts
  description: 'Remitian Tax Payment API — Accounts. 3 operations. Lead operation: List client accounts. Self-contained Naftiko
    capability covering one Remitian business surface.'
  tags:
  - Remitian
  - Accounts
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    REMITIAN_API_KEY: REMITIAN_API_KEY
capability:
  consumes:
  - type: http
    namespace: tax-payment-accounts
    baseUri: https://api.remitian.com
    description: Remitian Tax Payment API — Accounts business capability. Self-contained, no shared references.
    resources:
    - name: v1-accounts
      path: /v1/accounts
      operations:
      - name: listaccounts
        method: GET
        description: List client accounts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createaccount
        method: POST
        description: Create a client account
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-accounts-accountId
      path: /v1/accounts/{accountId}
      operations:
      - name: getaccount
        method: GET
        description: Retrieve a client account
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          description: Unique identifier of the client account
          required: true
    authentication:
      type: bearer
      token: '{{env.REMITIAN_API_KEY}}'
  exposes:
  - type: rest
    namespace: tax-payment-accounts-rest
    port: 8080
    description: REST adapter for Remitian Tax Payment API — Accounts. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/accounts
      name: v1-accounts
      description: REST surface for v1-accounts.
      operations:
      - method: GET
        name: listaccounts
        description: List client accounts
        call: tax-payment-accounts.listaccounts
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createaccount
        description: Create a client account
        call: tax-payment-accounts.createaccount
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/accounts/{accountid}
      name: v1-accounts-accountid
      description: REST surface for v1-accounts-accountId.
      operations:
      - method: GET
        name: getaccount
        description: Retrieve a client account
        call: tax-payment-accounts.getaccount
        with:
          accountId: rest.accountId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tax-payment-accounts-mcp
    port: 9090
    transport: http
    description: MCP adapter for Remitian Tax Payment API — Accounts. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-client-accounts
      description: List client accounts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tax-payment-accounts.listaccounts
      outputParameters:
      - type: object
        mapping: $.
    - name: create-client-account
      description: Create a client account
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: tax-payment-accounts.createaccount
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-client-account
      description: Retrieve a client account
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tax-payment-accounts.getaccount
      with:
        accountId: tools.accountId
      outputParameters:
      - type: object
        mapping: $.