Payments API

get specific entry

GET /api/rest/customer/v1/payments/:id

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOlsiY3VzdG9tZXItdjEiXSwic3ViIjo1MSwiZXhwIjoxNzgxMjc4ODY4fQ.KCLZ0_zX08UFTsb_twWN3xiMWAfLkvRYiWZb7qXNZ3k
Host: example.org
Cookie: 

Route

GET /api/rest/customer/v1/payments/fe0ec032-6674-11f1-9edb-da575d109341

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/"2be55a52d99b368c3d6a05702f0afd41"
cache-control: max-age=0, private, must-revalidate
x-request-id: e895e604-a488-4db9-bd1d-5567054d18be
x-runtime: 0.005927
content-length: 626

Status

200 OK

Body

{
  "data": {
    "id": "fe0ec032-6674-11f1-9edb-da575d109341",
    "type": "payments",
    "links": {
      "self": "http://example.org/api/rest/customer/v1/payments/fe0ec032-6674-11f1-9edb-da575d109341"
    },
    "attributes": {
      "amount": "10.0",
      "notes": "notes text",
      "status": "completed",
      "type-name": "manual",
      "created-at": "2026-06-12T15:40:08.980Z",
      "balance-before-payment": "0.0",
      "rolledback-at": null
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/customer/v1/payments/fe0ec032-6674-11f1-9edb-da575d109341/relationships/account",
          "related": "http://example.org/api/rest/customer/v1/payments/fe0ec032-6674-11f1-9edb-da575d109341/account"
        }
      }
    }
  }
}