v1

latestOpenAPI 3.0.02026-07-2455104.8 MB
Payment Methods

List payment methods

Lists all payment methods.

get/api/v1/paymentMethods

Query parameters

key'search' | 'id' | 'type' | 'project' required
op'equals' | 'notEquals' | 'in' | 'notIn' | 'contains' | 'notContains' | 'startsWith' | 'endsWith' | 'greaterThan' | 'lessThan' required
numberstring required

Page number should be an integer greater than or equal to 1

sizestring required

Page size should usually be an integer between 10 and 50.

field'id' | 'type' | 'project'
dir'asc' | 'desc'

Response

Operation completed successfully.

Example response

{
  "data": [
    {
      "id": "6",
      "type": "amazon",
      "project": {
        "id": "1"
      },
      "designation": "Amazon"
    }
  ],
  "extra": {
    "totalCount": 1,
    "page": {
      "number": 1,
      "size": 10
    }
  }
}