Latam Payments API Docs
  • Welcome!
  • Quick Start
  • Reference
    • API Reference
      • Authentication
      • Merchant Onboarding and Payment Flow
        • Collectors
        • Store
        • Point of Sales
      • QR
      • Reconciliation Files
      • Callbacks
Powered by GitBook
On this page
  • Get your API keys
  • Make your first request
  • Get Order details by UUID

Quick Start

PreviousWelcome!NextAPI Reference

Last updated 4 months ago

Get your API keys

Your API requests are authenticated using Bearer Tokens. Any request that doesn't include an Bearer Tokens will return an error.

You can generate a Bearer Token using the Authentication methods.

Make your first request

To make your first request, send an authenticated request to the orders endpoint. This will return an order, which is nice.

Get Order details by UUID

GET https://stage.api.payments.depay.us/payins/orders/{uuid}

Get an existing order by UUID

Query Parameters

Name
Type
Description

uuid*

string

Order unique identifier

Headers

Name
Type
Description

Authorization*

String

Bearer Token

{
    "order_uuid": "64579618-7013-455b-b525-5ff9d5d2b8f5",
    "total": "10",
    "destination_wallet": "0x7f533b5fbf6ef86c3b7df76cc27fc67744a9a760",
    "status": "in_progress"
}
{
    "statusCode": 401,
    "message": "Unauthorized"
}
{
    "statusCode": 404,
    "message": "Not Found"
}
Authentication