GET
/
{alias}
/
checkout
/
payments
/
{paymentId}
curl --request GET \
  --url https://api.dooki.com.br/v2/{alias}/checkout/payments/{paymentId} \
  --header 'User-Secret-Key: <api-key>' \
  --header 'User-Token: <api-key>'
{
  "data": {
    "id": 123,
    "alias": "<string>",
    "name": "<string>",
    "has_config": true,
    "active_config": true,
    "is_credit_card": true,
    "is_deposit": true,
    "is_billet": true,
    "is_pix": true,
    "is_pix_in_installments": true,
    "is_wallet": true,
    "icon_url": "<string>"
  }
}

Authorizations

User-Token
string
header
required
User-Secret-Key
string
header
required

Path Parameters

alias
string
required

Alias da loja

paymentId
integer
required

ID da forma de pagamento

Response

200
application/json

Detalhes da forma de pagamento

The response is of type object.