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.eyJhdWQiOlsiY3VzdG9tZXItdjEiXSwic3ViIjo1MCwiZXhwIjoxNzY3MzU4MDM2fQ.V1X3imS9sBIurG_615W4IrqDkGidEhei0QaQ5mnGuKs
Host: example.org
Cookie: 

Route

GET /api/rest/customer/v1/payments/076bc190-e7d9-11f0-932e-0a63caf27539

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/"035e5948d26d053a11436c358cb73c5c"
cache-control: max-age=0, private, must-revalidate
x-request-id: 79295afc-229b-41a0-ade0-3c8153cccd3d
x-runtime: 0.008760
content-length: 626

Status

200 OK

Body

{
  "data": {
    "id": "076bc190-e7d9-11f0-932e-0a63caf27539",
    "type": "payments",
    "links": {
      "self": "http://example.org/api/rest/customer/v1/payments/076bc190-e7d9-11f0-932e-0a63caf27539"
    },
    "attributes": {
      "amount": "10.0",
      "notes": "notes text",
      "status": "completed",
      "type-name": "manual",
      "created-at": "2026-01-02T12:46:16.690Z",
      "balance-before-payment": "0.0",
      "rolledback-at": null
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/customer/v1/payments/076bc190-e7d9-11f0-932e-0a63caf27539/relationships/account",
          "related": "http://example.org/api/rest/customer/v1/payments/076bc190-e7d9-11f0-932e-0a63caf27539/account"
        }
      }
    }
  }
}