Skip to main content
GET
/
{alias}
/
public
/
catalog
/
products
/
{id}
/
installments
Visualizar informações dos parcelas do produto
curl --request GET \
  --url https://api.dooki.com.br/v2/{alias}/public/catalog/products/{id}/installments \
  --header 'Content-Type: application/json' \
  --header 'User-Secret-Key: <api-key>' \
  --header 'User-Token: <api-key>' \
  --data '{
  "amount": 0
}'
{
  "max_installment": 6,
  "max_installment_value": 0,
  "amount": 0,
  "text": "6x de R$ 0,00 com juros",
  "text_with_tax": "6x de R$ 0,00",
  "text_discount_percent": null,
  "text_discount": null
}

Authorizations

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

Path Parameters

alias
string
required

Alias da loja

id
string
required

id do produto

Body

application/json
amount
number
Example:

0

Response

Retorna as Informações das parcelas do produto

max_installment
integer
Example:

6

max_installment_value
number
Example:

0

amount
number
Example:

0

text
string
Example:

"6x de R$ 0,00 com juros"

text_with_tax
string
Example:

"6x de R$ 0,00"

text_discount_percent
string | null
Example:

null

text_discount
string | null
Example:

null

I