跳转至

支付编排

Liquido支持多种服务提供商,您可以根据业务需求选择。只需要简单集成一次接口,即可在服务提供商间轻松切换。

如果您有需要,请与我们商业团队洽谈。

接入流程

  1. 与我们商务团队洽谈,提供服务提供商的证书。
  2. 接入Liquido的收款接口。
  3. 在请求收款接口时指定服务提供商。

创建带支付编排的收款请求

POST /v1/payments/charges/card

Request Headers
{
    "Content-Type": "application/json",
    "Authorization": "Bearer {{access_token}}",
    "x-api-key": "{{api_key}}"
}
Request Body
{
    "idempotencyKey": "1ec983fa-1a37-679b-809b-067861d87ab0",
    "paymentMethod": "CREDIT_CARD",
    ...  # other basic request fields
    "orchestration_vendor": "LIQUIDO" // DLOCAL, EBANX, etc.
    ...  # other basic request fields
}
Response
{
    "transferStatusCode": 200,
    "idempotencyKey": "1ec983fa-1a37-679b-809b-067861d87ab0",
    ...  # other basic response fields
    "orchestration_vendor": "LIQUIDO",
    ...  # other basic response fields
    "transferStatus": "IN_PROGRESS"
}
回到页面顶部