Vendedores
Criar vendedor
Referência da API
- Introdução
- Autenticação
- Catálogo
- Checkout
- Afiliações
- Bancos
- Carrinhos abandonados
- Gateways de pagamento
- Configurações de pagamentos
- Parcelamento
- Formas de pagamentos
- Contas bancárias
- Vendedores
- Status de pedidos
- Transações
- Configurações
- Conteúdo
- Clientes
- Leads
- Logística
- Marketing
- Pedidos
- Sistema
- Promoções
- Filas
- Usuários
- Webhooks
Vendedores
Criar vendedor
Cria um novo vendedor associado à loja especificada pelo alias
POST
/
{alias}
/
checkout
/
sellers
curl --request POST \
--url https://api.dooki.com.br/v2/{alias}/checkout/sellers \
--header 'Content-Type: application/json' \
--header 'User-Secret-Key: <api-key>' \
--header 'User-Token: <api-key>' \
--data '{
"affiliation_id": 123,
"bank_account_id": 123,
"has_split": true,
"transfer_enabled": true,
"active": true,
"name": "<string>",
"email": "jsmith@example.com",
"document": "<string>",
"document_type": "cpf",
"transfer_interval": "daily",
"transfer_day": 0,
"antecipatable_volume_percentage": 0,
"automatic_antecipation_enabled": true,
"ref_code": "<string>",
"external_gateway_id": 123,
"percentage_products": 5,
"percentage_shipping": 5,
"charge_processing_fee": true,
"liable": true
}'
{
"id": 123,
"affiliation_id": 123,
"bank_account_id": 123,
"store_alias": "<string>",
"has_split": true,
"transfer_enabled": true,
"active": true,
"name": "teste",
"email": "teste@email.com",
"document": "12345678912",
"document_type": "cpf",
"transfer_interval": "daily",
"transfer_day": 0,
"anticipatable_volume_percentage": 0,
"automatic_anticipation_enabled": true,
"ref_code": "1",
"external_gateway_id": null,
"percentage_products": 5,
"percentage_shipping": 5,
"charge_processing_fee": true,
"liable": true
}
Path Parameters
Alias da loja
Body
application/json
Representa os dados necessários para criar ou atualizar um vendedor
Response
201
application/json
Vendedor criado com sucesso
Was this page helpful?
curl --request POST \
--url https://api.dooki.com.br/v2/{alias}/checkout/sellers \
--header 'Content-Type: application/json' \
--header 'User-Secret-Key: <api-key>' \
--header 'User-Token: <api-key>' \
--data '{
"affiliation_id": 123,
"bank_account_id": 123,
"has_split": true,
"transfer_enabled": true,
"active": true,
"name": "<string>",
"email": "jsmith@example.com",
"document": "<string>",
"document_type": "cpf",
"transfer_interval": "daily",
"transfer_day": 0,
"antecipatable_volume_percentage": 0,
"automatic_antecipation_enabled": true,
"ref_code": "<string>",
"external_gateway_id": 123,
"percentage_products": 5,
"percentage_shipping": 5,
"charge_processing_fee": true,
"liable": true
}'
{
"id": 123,
"affiliation_id": 123,
"bank_account_id": 123,
"store_alias": "<string>",
"has_split": true,
"transfer_enabled": true,
"active": true,
"name": "teste",
"email": "teste@email.com",
"document": "12345678912",
"document_type": "cpf",
"transfer_interval": "daily",
"transfer_day": 0,
"anticipatable_volume_percentage": 0,
"automatic_anticipation_enabled": true,
"ref_code": "1",
"external_gateway_id": null,
"percentage_products": 5,
"percentage_shipping": 5,
"charge_processing_fee": true,
"liable": true
}