---
title: "Get Payment Details by Invoice ID"
method: GET
path: "/api/v1/payment/{invoiceId}"
tags: ["Payment"]
---

# Get Payment Details by Invoice ID

`GET /api/v1/payment/{invoiceId}`

Get payment details by invoice ID.

## Path parameters

- `invoiceId` string, required

## Response `200`

Payment details is found.

- PaymentDetailsResponseVo
  - `statusCode` number
  - `message` string
  - `data` PaymentDetailsVo
    - `invoiceId` string — Unique identifier of invoice
    - `totalFees` number — Total transaction fees
    - `cryptoCurrency` string — Cryptocurrency symbol for the transaction
    - `fiatCurrency` string — Fiat currency symbol for the transaction
    - `paymentMethod` string — Payment method used for the transaction
    - `paymentStatus` string — Payment status, value is `pending`, `success`, `failed`, `void`
    - `orderStatus` string — Order status from payment provider
    - `isBuyOrSell` string — Indicate the transaction either is `BUY` or `SELL`
    - `tax` number — Tax amount for the transaction
    - `blockchainNetwork` string — Blockchain network name
    - `exchangeRate` number — Conversion rate
    - `fiatAmount` number — Fiat amount for the transaction
    - `cryptoAmount` number — Cryptocurrency amount for the transaction
    - `expiredDate` string — Expire date of the payment request
    - `createdAt` string — Timestamp of payment request created in milliseconds
    - `createdDate` string — Date of payment request created
    - `paymentProvider` string — Payment provider name
    - `walletAddress` string — Wallet address is used for the transaction
    - `user` object
      - `emailAddress` string
      - `firstName` string
      - `lastName` string
      - `mobileNumber` string
      - `dateOfBirth` string
      - `street` string
      - `city` string
      - `state` string
      - `country` string
      - `postalCode` string

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden Resources

---

[API](https://skmtc.dev/securo/apis/securo-api-3.md) · [All operations](https://skmtc.dev/securo/apis/securo-api-3/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/securo/securo-api-3/revisions/e1730f59c552/schema)
