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.eyJhdWQiOlsiY3VzdG9tZXItdjEiXSwic3ViIjo1MCwiZXhwIjoxNzc2MzY1MjA4fQ.VOXYSTSzcfA0PkMsUi10ZY4oOrmzAoUZeMl4uwhV_14
Host: example.org
Cookie: 

Route

GET /api/rest/customer/v1/payments/7bf263ce-39c4-11f1-b6d8-82ad38f4dd55

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/"3cf19d5159837cbc90754dea0ae3d73e"
cache-control: max-age=0, private, must-revalidate
x-request-id: f57c499d-aaaa-4060-b4f7-7a59baf184a1
x-runtime: 0.007654
content-length: 626

Status

200 OK

Body

{
  "data": {
    "id": "7bf263ce-39c4-11f1-b6d8-82ad38f4dd55",
    "type": "payments",
    "links": {
      "self": "http://example.org/api/rest/customer/v1/payments/7bf263ce-39c4-11f1-b6d8-82ad38f4dd55"
    },
    "attributes": {
      "amount": "10.0",
      "notes": "notes text",
      "status": "completed",
      "type-name": "manual",
      "created-at": "2026-04-16T18:45:48.104Z",
      "balance-before-payment": "0.0",
      "rolledback-at": null
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/customer/v1/payments/7bf263ce-39c4-11f1-b6d8-82ad38f4dd55/relationships/account",
          "related": "http://example.org/api/rest/customer/v1/payments/7bf263ce-39c4-11f1-b6d8-82ad38f4dd55/account"
        }
      }
    }
  }
}