Payment info by id in endpoint

Redoc: Payment info by id in endpoint.

Endpoint

GET /api/v1/paymentgate/payment/info/client/

Description

Get full payment info by id in endpoint (client_id).

Query Parameters

Parameter Type Required Description
client_id string T Transaction id at the endpoint
endpoint string <uuid> T Endpoint API Key

Response

200 OK

[
  {
    "tx": "f17d7f5c-6b4a-47fd-95eb-08086e250473",
    "payment": {
      "amount": 100,
      "currency": {
        "id": 0,
        "title": "Ethereum",
        "char_code": "ETH",
        "num_code": 123
      },
      "description": "string",
      "status": "create",
      "approved_status": "process",
      "test_mode": true,
      "client_id": "string",
      "created_at": "2024-09-27T11:56:32Z",
      "cancel_at": "2024-09-27T11:56:32Z",
      "complete_date": "2024-09-27T11:56:32Z",
      "integration_type": "h2h",
      "merchant_integration_type": "h2h",
      "means_of_payment": {
        "mop_type": {
          "id": 100,
          "name": "string",
          "code": "string"
        },
        "number": "string",
        "detail": {
          "property1": null,
          "property2": null
        }
      },
      "custom_data": {
        "property1": null,
        "property2": null
      },
      "success_url": "http://example.com",
      "fail_url": "http://example.com",
      "buyer_fee_amount": 0,
      "merchant_fee_amount": 0,
      "means_of_payment_type": {
        "id": 100,
        "name": "string",
        "code": "string"
      },
      "auto_redirect": 100,
      "language": {
        "id": 100,
        "name": "string",
        "code": "string"
      }
    },
    "status": "create",
    "currency": {
      "id": 0,
      "title": "Ethereum",
      "char_code": "ETH",
      "num_code": 123
    },
    "amount": 100,
    "received_amount": 0,
    "created_at": "2024-09-27T11:56:32Z",
    "errors": {
      "property1": null,
      "property2": null
    },
    "additional_data": {
      "property1": null,
      "property2": null
    },
    "endpoint_logo": "string"
  }
]