GET /paymentmethods

Retrieve a list of all payment methods that can be used when creating or updating a sales order in the Finago Office ERP system. This endpoint allows clients to access the available payment methods.

Headers

  • Authorization string Required

    Authorization header

Responses

  • 200 application/json

    List of payment methods retrieved successfully

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string
    • Access-Control-Allow-Credentials string
    • X-Trace-Id string
    Hide response attributes Show response attributes object
    • id integer Required

      Unique identifier for the payment method

    • name string Required

      Display name of the payment method

    • account object
      Hide account attribute Show account attribute object
      • id integer

        Unique identifier for the account associated with the payment method

GET /paymentmethods
curl \
 --request GET 'https://rest.api.24sevenoffice.com/v1/paymentmethods' \
 --header "Authorization: string"
Response examples (200)
# Headers
Access-Control-Allow-Origin: string
Access-Control-Allow-Credentials: string
X-Trace-Id: string

# Payload
[
  {
    "id": 42,
    "name": "string",
    "account": {
      "id": 42
    }
  }
]