PaymentMethod

Retrieves the collection of PaymentMethod resources.

get

Retrieves the collection of PaymentMethod resources.

Authorizations
Query parameters
id[between]stringOptional
id[gt]stringOptional
id[gte]stringOptional
id[lt]stringOptional
id[lte]stringOptional
Responses
200

PaymentMethod collection

get
GET /payment_methods HTTP/1.1
Host: api
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

PaymentMethod collection

{
  "hydra:member": [
    {
      "@id": "text",
      "@type": "text",
      "@context": "text",
      "id": 1,
      "internalKey": "T",
      "internalName": "text",
      "startTime": "2025-09-12T15:01:49.761Z",
      "endTime": "2025-09-12T15:01:49.761Z",
      "fee": 1,
      "feeType": "STATIC",
      "orderIndex": 1,
      "activityType": "/entitiy/1",
      "frame": "/entitiy/1"
    }
  ],
  "hydra:totalItems": 1,
  "hydra:view": {
    "@id": "string",
    "type": "string",
    "hydra:first": "string",
    "hydra:last": "string",
    "hydra:previous": "string",
    "hydra:next": "string"
  },
  "hydra:search": {
    "@type": "text",
    "hydra:template": "text",
    "hydra:variableRepresentation": "text",
    "hydra:mapping": [
      {
        "@type": "text",
        "variable": "text",
        "property": "text",
        "required": true
      }
    ]
  }
}

Retrieves a PaymentMethod resource.

get

Retrieves a PaymentMethod resource.

Authorizations
Path parameters
idstringRequired

Resource identifier

Responses
200

PaymentMethod resource

get
GET /payment_methods/{id} HTTP/1.1
Host: api
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "@id": "text",
  "@type": "text",
  "@context": "text",
  "id": 1,
  "internalKey": "T",
  "internalName": "text",
  "startTime": "2025-09-12T15:01:49.761Z",
  "endTime": "2025-09-12T15:01:49.761Z",
  "fee": 1,
  "feeType": "STATIC",
  "orderIndex": 1,
  "activityType": "/entitiy/1",
  "frame": "/entitiy/1"
}

Was this helpful?