FirstPromoter Payout Methods API

The Payout Methods API from FirstPromoter — 2 operation(s) for payout methods.

Operations 5

GET /payout_methods Get all payout methods #
POST /payout_methods Create a payout method #
GET /payout_methods/{id} Get a payout method #
PUT /payout_methods/{id} Update a payout method #
DELETE /payout_methods/{id} Delete a payout method #

Documentation

📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-advanced/payout-methods-api
📖
APIReference
https://docs.firstpromoter.com/api-reference-v2/api-admin/introduction
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-advanced/products-api
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-affiliate/assets
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-affiliate/campaigns
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-affiliate/commissions
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-affiliate/contract-documents
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-affiliate/email-settings
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-affiliate/payout-methods
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-affiliate/payouts
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-affiliate/promo-codes
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-affiliate/promoter-campaigns
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-affiliate/promoters
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-affiliate/referral-links
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-affiliate/referrals
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-affiliate/reports
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-advanced/asset-categories-api
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-advanced/assets
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-admin/batches
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-advanced/campaigns-api
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-admin/commissions
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-advanced/contract-documents-api
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-advanced/contracts-api
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-advanced/custom-referral-statuses
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-advanced/dashboard-api
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-admin
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-advanced/invoices
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-advanced/payments-batches
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-admin/payouts
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-admin/promo-codes
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-admin/promoter-campaigns
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-admin/promoters
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-admin/referrals
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-admin/reports
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-advanced/rewards
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-admin/tracking-api
📖
Documentation
https://docs.firstpromoter.com/api-reference-v2/api-admin/webhooks

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/firstpromoter-payout-methods-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

firstpromoter-payout-methods-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Firstpromoter Payout Methods API
  version: '1.0'
  description: 'Operations tagged Payout Methods across 2 of this provider''s published API definitions: firstpromoter-v2-advanced-payout-methods-openapi.yml, firstpromoter-v2-affiliate-payout-methods-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.firstpromoter.com/api/v2/company
- url: https://api.firstpromoter.com/api/v2/affiliate
tags:
- name: Payout Methods
paths:
  /payout_methods:
    get:
      summary: Get all payout methods
      description: "This endpoint gets all payout methods \n <Tip>**HTTP Request** <br/>`GET https://api.firstpromoter.com/api/v2/company/payout_methods`</Tip>"
      operationId: adminGetPayoutMethods
      tags:
      - Payout Methods
      parameters:
      - name: filters[promoter_id]
        in: query
        required: true
        schema:
          type: integer
        description: Promoter id
      responses:
        '200':
          description: List of payout methods
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PayoutMethod'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
      security:
      - BearerAuth: []
        accountId: []
    post:
      summary: Create a payout method
      description: "This endpoint creates a payout method under a promoter \n <Tip>**HTTP Request** <br/>`POST https://api.firstpromoter.com/api/v2/company/payout_methods`</Tip>"
      operationId: adminCreatePayoutMethod
      tags:
      - Payout Methods
      parameters:
      - $ref: '#/components/parameters/AccountId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PayoutMethodCreate'
      responses:
        '200':
          description: Created payout method
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PayoutMethod'
        '400':
          $ref: '#/components/responses/ValidationError'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '422':
          $ref: '#/components/responses/InvalidParams'
      security:
      - BearerAuth: []
        accountId: []
    servers:
    - url: https://api.firstpromoter.com/api/v2/company
  /payout_methods/{id}:
    get:
      summary: Get a payout method
      description: "This endpoint gets a payout method \n <Tip>**HTTP Request** <br/>`GET https://api.firstpromoter.com/api/v2/company/payout_methods/{id}`</Tip>"
      operationId: adminGetPayoutMethod
      tags:
      - Payout Methods
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
        description: Payout method ID
      responses:
        '200':
          description: Payout method details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PayoutMethod'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
      security:
      - BearerAuth: []
        accountId: []
    put:
      description: "This endpoint updates a payout method under a promoter \n <Tip>**HTTP Request** <br/>`PUT https://api.firstpromoter.com/api/v2/company/payout_methods/{id}`</Tip>"
      summary: Update a payout method
      operationId: adminUpdatePayoutMethod
      tags:
      - Payout Methods
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
        description: Payout method ID
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PayoutMethodUpdate'
      responses:
        '200':
          description: Updated payout method
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PayoutMethod'
        '400':
          $ref: '#/components/responses/ValidationError'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '422':
          $ref: '#/components/responses/InvalidParams'
      security:
      - BearerAuth: []
        accountId: []
    delete:
      summary: Delete a payout method
      operationId: adminDeletePayoutMethod
      tags:
      - Payout Methods
      parameters:
      - $ref: '#/components/parameters/AccountId'
      - name: id
        in: path
        required: true
        schema:
          type: integer
        description: Payout method ID
      responses:
        '200':
          description: Payout method deleted
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
      security:
      - BearerAuth: []
        accountId: []
    servers:
    - url: https://api.firstpromoter.com/api/v2/company
components:
  schemas:
    CryptoDetails:
      type: object
      required:
      - wallet_address
      - crypto_currency
      properties:
        wallet_address:
          type: string
        crypto_currency:
          type: string
    PayoutMethodUpdate:
      type: object
      required:
      - details
      - method
      - promoter_id
      properties:
        method:
          type: string
          enum:
          - paypal
          - bank
          - wise
          - crypto
          - custom
          - dots
        is_disabled:
          type: boolean
        is_selected:
          type: boolean
        promoter_id:
          type: integer
          description: Id of the promoter
        details:
          type: object
          oneOf:
          - $ref: '#/components/schemas/PaypalDetails'
          - $ref: '#/components/schemas/BankDetails'
          - $ref: '#/components/schemas/WiseDetails'
          - $ref: '#/components/schemas/CryptoDetails'
    Error:
      type: object
      properties:
        message:
          type: string
        code:
          type: string
    PayoutMethodCreate:
      type: object
      required:
      - method
      - details
      - promoter_id
      properties:
        method:
          type: string
          enum:
          - paypal
          - bank
          - wise
          - crypto
          - custom
          - dots
        is_disabled:
          type: boolean
        is_selected:
          type: boolean
        promoter_id:
          type: integer
          description: Id of the promoter
        details:
          type: object
          oneOf:
          - $ref: '#/components/schemas/PaypalDetails'
          - $ref: '#/components/schemas/BankDetails'
          - $ref: '#/components/schemas/WiseDetails'
          - $ref: '#/components/schemas/CryptoDetails'
    PayoutMethod:
      type: object
      properties:
        id:
          type: integer
        method:
          type: string
          enum:
          - paypal
          - bank
          - wise
          - crypto
          - custom
          - dots
        date_added:
          type: string
          format: date-time
        is_disabled:
          type: boolean
        meta:
          type: object
        is_selected:
          type: boolean
        details:
          type: object
          oneOf:
          - $ref: '#/components/schemas/PaypalDetails'
          - $ref: '#/components/schemas/BankDetails'
          - $ref: '#/components/schemas/WiseDetails'
          - $ref: '#/components/schemas/CryptoDetails'
        managed_payouts:
          type: boolean
    BankDetails:
      type: object
      required:
      - bank_country
      - account_holder_name
      properties:
        bank_country:
          type: string
          enum:
          - AD
          - AE
          - AL
          - AT
          - AU
          - AZ
          - BA
          - BE
          - BG
          - BH
          - BR
          - BY
          - CA
          - CH
          - CI
          - CR
          - CV
          - CY
          - CZ
          - DE
          - DK
          - DO
          - EE
          - EG
          - ES
          - FI
          - FO
          - FR
          - GA
          - GB
          - GE
          - GI
          - GL
          - GR
          - HR
          - HU
          - IE
          - IL
          - IQ
          - IS
          - IT
          - JO
          - KW
          - KZ
          - LB
          - LI
          - LT
          - LU
          - LV
          - MC
          - MD
          - ME
          - MG
          - MK
          - MR
          - MT
          - MU
          - NL
          - 'NO'
          - PK
          - PL
          - PS
          - PT
          - QA
          - RO
          - RS
          - SA
          - SC
          - SE
          - SI
          - SK
          - SM
          - SV
          - TN
          - TR
          - UA
          - US
          - VA
          - VG
          - XK
        account_holder_name:
          type: string
        account_number:
          type: string
        routing_aba_number:
          type: string
        country:
          type: string
        state:
          type: string
        postal_code:
          type: string
        address:
          type: string
        city:
          type: string
        transit_number:
          type: string
        institution_number:
          type: string
        bsb_code:
          type: string
        sort_code:
          type: string
        iban:
          type: string
        swift_bic_code:
          type: string
        bank_name:
          type: string
        bank_city:
          type: string
        bank_address:
          type: string
    WiseDetails:
      type: object
      required:
      - wise_email
      properties:
        wise_email:
          type: string
          format: email
    PaypalDetails:
      type: object
      required:
      - paypal_email
      properties:
        paypal_email:
          type: string
          format: email
    PayoutMethodUpdate_2:
      type: object
      required:
      - details
      properties:
        method:
          type: string
          enum:
          - paypal
          - bank
          - wise
          - crypto
          - custom
          - dots
        is_disabled:
          type: boolean
        is_selected:
          type: boolean
        details:
          $ref: '#/components/schemas/PayoutMethodDetails'
    Error_2:
      type: object
      properties:
        message:
          type: string
        code:
          type: string
        errors:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
    PayoutMethodCreate_2:
      type: object
      required:
      - method
      - details
      properties:
        method:
          type: string
          enum:
          - paypal
          - bank
          - wise
          - crypto
          - custom
          - dots
        is_disabled:
          type: boolean
        is_selected:
          type: boolean
        details:
          $ref: '#/components/schemas/PayoutMethodDetails'
    PayoutMethodDetails:
      type: object
      properties:
        paypal_email:
          type: string
        wise_email:
          type: string
        wallet_address:
          type: string
        crypto_currency:
          type: string
        bank_country:
          type: string
          enum:
          - AD
          - AE
          - AL
          - AT
          - AU
          - AZ
          - BA
          - BE
          - BG
          - BH
          - BR
          - BY
          - CA
          - CH
          - CI
          - CR
          - CV
          - CY
          - CZ
          - DE
          - DK
          - DO
          - EE
          - EG
          - ES
          - FI
          - FO
          - FR
          - GA
          - GB
          - GE
          - GI
          - GL
          - GR
          - HR
          - HU
          - IE
          - IL
          - IQ
          - IS
          - IT
          - JO
          - KW
          - KZ
          - LB
          - LI
          - LT
          - LU
          - LV
          - MC
          - MD
          - ME
          - MG
          - MK
          - MR
          - MT
          - MU
          - NL
          - 'NO'
          - PK
          - PL
          - PS
          - PT
          - QA
          - RO
          - RS
          - SA
          - SC
          - SE
          - SI
          - SK
          - SM
          - SV
          - TN
          - TR
          - UA
          - US
          - VA
          - VG
          - XK
        account_holder_name:
          type: string
        account_number:
          type: string
        routing_aba_number:
          type: string
        country:
          type: string
        state:
          type: string
        postal_code:
          type: string
        address:
          type: string
        city:
          type: string
        transit_number:
          type: string
        institution_number:
          type: string
        bsb_code:
          type: string
        sort_code:
          type: string
        iban:
          type: string
        swift_bic_code:
          type: string
        bank_name:
          type: string
        bank_city:
          type: string
        bank_address:
          type: string
    PayoutMethod_2:
      type: object
      properties:
        id:
          type: integer
        method:
          type: string
          enum:
          - paypal
          - bank
          - wise
          - crypto
          - custom
          - dots
        date_added:
          type: string
          format: date-time
        is_disabled:
          type: boolean
        meta:
          type: object
        is_selected:
          type: boolean
        details:
          $ref: '#/components/schemas/PayoutMethodDetails'
        managed_payouts:
          type: boolean
  responses:
    Conflict:
      description: Conflict
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            message: Failed to destroy Rewards::Providers::Account
            code: destroy_failed
    InvalidParams:
      description: Invalid Parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            message: Invalid method
            code: invalid_params
    ValidationError:
      description: Validation Error
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
              errors:
                type: object
                additionalProperties:
                  type: array
                  items:
                    type: string
              code:
                type: string
            example:
              message: 'Validation failed: Details paypal email can''t be blank'
              errors:
                details.paypal_email:
                - can't be blank
                - is invalid
              code: invalid_record
    Forbidden:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            message: Invalid user type
            code: forbidden
    NotFound:
      description: Not Found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            message: Record not found
            code: not_found
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Conflict_2:
      description: Conflict
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error_2'
    ValidationError_2:
      description: Validation error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error_2'
    Forbidden_2:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error_2'
    UnprocessableEntity:
      description: Unprocessable Entity
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error_2'
    NotFound_2:
      description: Record not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error_2'
  parameters:
    AccountId:
      name: Account-ID
      in: header
      required: true
      description: Account identifier that specifies which account is making the request
      schema:
        type: string
        example: acc_123456
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Access token passed as a Bearer token in the Authorization header
    accountId:
      type: apiKey
      in: header
      name: ACCOUNT-ID
      description: Account identifier that specifies which account is making the request
x-refined-from:
- firstpromoter-v2-advanced-payout-methods-openapi.yml
- firstpromoter-v2-affiliate-payout-methods-openapi.yml