Payments API

get specific entry

GET /api/rest/admin/payments/:id

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjE3MCwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc2NzM1ODU2OX0.2paZZZTEBR2ane5PfLunEl3ucfomcFZb8BjKfYQIBmo
Host: example.org
Cookie: 

Route

GET /api/rest/admin/payments/33

Response

Headers

x-frame-options: SAMEORIGIN
x-xss-protection: 0
x-content-type-options: nosniff
x-permitted-cross-domain-policies: none
referrer-policy: strict-origin-when-cross-origin
content-type: application/vnd.api+json
vary: Accept
etag: W/"8a8e607356ae44630cf6e70f79a7bf84"
cache-control: max-age=0, private, must-revalidate
x-request-id: 93319e7d-5e02-4618-8181-be8c8e941b7a
x-runtime: 0.019443
content-length: 541

Status

200 OK

Body

{
  "data": {
    "id": "33",
    "type": "payments",
    "links": {
      "self": "http://example.org/api/rest/admin/payments/33"
    },
    "attributes": {
      "created-at": "2026-01-02T12:46:09.595Z",
      "amount": "10.0",
      "notes": "notes text",
      "private-notes": "private notes",
      "status": "completed",
      "type-name": "manual",
      "balance-before-payment": "0.0",
      "rolledback-at": null
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/admin/payments/33/relationships/account",
          "related": "http://example.org/api/rest/admin/payments/33/account"
        },
        "data": {
          "type": "accounts",
          "id": "85"
        }
      }
    }
  }
}