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.eyJhdWQiOlsiY3VzdG9tZXItdjEiXSwic3ViIjo1MSwiZXhwIjoxNzgxMDQxOTcwfQ.THoZRcneog0ucf_phUCklRyu2PphXioPoNEkU4Gpc90
Host: example.org
Cookie: 

Route

GET /api/rest/customer/v1/payments/6b951aa4-644d-11f1-907b-66d94f293d23

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/"f73c1a0df1c827e4e801575efcb1e059"
cache-control: max-age=0, private, must-revalidate
x-request-id: 41ec4c6b-89ed-4bda-9826-0be7c1cd2636
x-runtime: 0.006374
content-length: 626

Status

200 OK

Body

{
  "data": {
    "id": "6b951aa4-644d-11f1-907b-66d94f293d23",
    "type": "payments",
    "links": {
      "self": "http://example.org/api/rest/customer/v1/payments/6b951aa4-644d-11f1-907b-66d94f293d23"
    },
    "attributes": {
      "amount": "10.0",
      "notes": "notes text",
      "status": "completed",
      "type-name": "manual",
      "created-at": "2026-06-09T21:51:50.538Z",
      "balance-before-payment": "0.0",
      "rolledback-at": null
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/customer/v1/payments/6b951aa4-644d-11f1-907b-66d94f293d23/relationships/account",
          "related": "http://example.org/api/rest/customer/v1/payments/6b951aa4-644d-11f1-907b-66d94f293d23/account"
        }
      }
    }
  }
}