Criar uma nota fiscal
curl --request POST \
--url https://api.dooki.com.br/v2/{alias}/orders/{orderId}/invoices \
--header 'Content-Type: application/json' \
--header 'User-Secret-Key: <api-key>' \
--header 'User-Token: <api-key>' \
--data '
{
"series": "000",
"number": "000",
"date": "2018-01-01",
"value": "99.99",
"key": "000",
"products_value": "79.99",
"url": "https://url.com",
"cfop": "cfop",
"force_invoiced_status": "true"
}
'import requests
url = "https://api.dooki.com.br/v2/{alias}/orders/{orderId}/invoices"
payload = {
"series": "000",
"number": "000",
"date": "2018-01-01",
"value": "99.99",
"key": "000",
"products_value": "79.99",
"url": "https://url.com",
"cfop": "cfop",
"force_invoiced_status": "true"
}
headers = {
"User-Token": "<api-key>",
"User-Secret-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'User-Token': '<api-key>',
'User-Secret-Key': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
series: '000',
number: '000',
date: '2018-01-01',
value: '99.99',
key: '000',
products_value: '79.99',
url: 'https://url.com',
cfop: 'cfop',
force_invoiced_status: 'true'
})
};
fetch('https://api.dooki.com.br/v2/{alias}/orders/{orderId}/invoices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.dooki.com.br/v2/{alias}/orders/{orderId}/invoices",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'series' => '000',
'number' => '000',
'date' => '2018-01-01',
'value' => '99.99',
'key' => '000',
'products_value' => '79.99',
'url' => 'https://url.com',
'cfop' => 'cfop',
'force_invoiced_status' => 'true'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"User-Secret-Key: <api-key>",
"User-Token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.dooki.com.br/v2/{alias}/orders/{orderId}/invoices"
payload := strings.NewReader("{\n \"series\": \"000\",\n \"number\": \"000\",\n \"date\": \"2018-01-01\",\n \"value\": \"99.99\",\n \"key\": \"000\",\n \"products_value\": \"79.99\",\n \"url\": \"https://url.com\",\n \"cfop\": \"cfop\",\n \"force_invoiced_status\": \"true\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("User-Token", "<api-key>")
req.Header.Add("User-Secret-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.dooki.com.br/v2/{alias}/orders/{orderId}/invoices")
.header("User-Token", "<api-key>")
.header("User-Secret-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"series\": \"000\",\n \"number\": \"000\",\n \"date\": \"2018-01-01\",\n \"value\": \"99.99\",\n \"key\": \"000\",\n \"products_value\": \"79.99\",\n \"url\": \"https://url.com\",\n \"cfop\": \"cfop\",\n \"force_invoiced_status\": \"true\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.dooki.com.br/v2/{alias}/orders/{orderId}/invoices")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["User-Token"] = '<api-key>'
request["User-Secret-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"series\": \"000\",\n \"number\": \"000\",\n \"date\": \"2018-01-01\",\n \"value\": \"99.99\",\n \"key\": \"000\",\n \"products_value\": \"79.99\",\n \"url\": \"https://url.com\",\n \"cfop\": \"cfop\",\n \"force_invoiced_status\": \"true\"\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 123,
"merchant_id": 123,
"order_id": 123,
"series": "<string>",
"number": "<string>",
"key": "<string>",
"date": "2023-11-07T05:31:56Z",
"value": 123,
"products_value": 123,
"cfop": "<string>",
"url": "<string>",
"created_at": {
"date": "2000-08-17 10:24:24",
"timezone_type": 3,
"timezone": "America/Sao_Paulo"
},
"updated_at": {
"date": "2000-08-17 10:24:24",
"timezone_type": 3,
"timezone": "America/Sao_Paulo"
}
}
]
}Notas fiscais
Criar uma nota fiscal
Cria uma nova nota fiscal para um pedido específico
POST
/
{alias}
/
orders
/
{orderId}
/
invoices
Criar uma nota fiscal
curl --request POST \
--url https://api.dooki.com.br/v2/{alias}/orders/{orderId}/invoices \
--header 'Content-Type: application/json' \
--header 'User-Secret-Key: <api-key>' \
--header 'User-Token: <api-key>' \
--data '
{
"series": "000",
"number": "000",
"date": "2018-01-01",
"value": "99.99",
"key": "000",
"products_value": "79.99",
"url": "https://url.com",
"cfop": "cfop",
"force_invoiced_status": "true"
}
'import requests
url = "https://api.dooki.com.br/v2/{alias}/orders/{orderId}/invoices"
payload = {
"series": "000",
"number": "000",
"date": "2018-01-01",
"value": "99.99",
"key": "000",
"products_value": "79.99",
"url": "https://url.com",
"cfop": "cfop",
"force_invoiced_status": "true"
}
headers = {
"User-Token": "<api-key>",
"User-Secret-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'User-Token': '<api-key>',
'User-Secret-Key': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
series: '000',
number: '000',
date: '2018-01-01',
value: '99.99',
key: '000',
products_value: '79.99',
url: 'https://url.com',
cfop: 'cfop',
force_invoiced_status: 'true'
})
};
fetch('https://api.dooki.com.br/v2/{alias}/orders/{orderId}/invoices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.dooki.com.br/v2/{alias}/orders/{orderId}/invoices",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'series' => '000',
'number' => '000',
'date' => '2018-01-01',
'value' => '99.99',
'key' => '000',
'products_value' => '79.99',
'url' => 'https://url.com',
'cfop' => 'cfop',
'force_invoiced_status' => 'true'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"User-Secret-Key: <api-key>",
"User-Token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.dooki.com.br/v2/{alias}/orders/{orderId}/invoices"
payload := strings.NewReader("{\n \"series\": \"000\",\n \"number\": \"000\",\n \"date\": \"2018-01-01\",\n \"value\": \"99.99\",\n \"key\": \"000\",\n \"products_value\": \"79.99\",\n \"url\": \"https://url.com\",\n \"cfop\": \"cfop\",\n \"force_invoiced_status\": \"true\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("User-Token", "<api-key>")
req.Header.Add("User-Secret-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.dooki.com.br/v2/{alias}/orders/{orderId}/invoices")
.header("User-Token", "<api-key>")
.header("User-Secret-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"series\": \"000\",\n \"number\": \"000\",\n \"date\": \"2018-01-01\",\n \"value\": \"99.99\",\n \"key\": \"000\",\n \"products_value\": \"79.99\",\n \"url\": \"https://url.com\",\n \"cfop\": \"cfop\",\n \"force_invoiced_status\": \"true\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.dooki.com.br/v2/{alias}/orders/{orderId}/invoices")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["User-Token"] = '<api-key>'
request["User-Secret-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"series\": \"000\",\n \"number\": \"000\",\n \"date\": \"2018-01-01\",\n \"value\": \"99.99\",\n \"key\": \"000\",\n \"products_value\": \"79.99\",\n \"url\": \"https://url.com\",\n \"cfop\": \"cfop\",\n \"force_invoiced_status\": \"true\"\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 123,
"merchant_id": 123,
"order_id": 123,
"series": "<string>",
"number": "<string>",
"key": "<string>",
"date": "2023-11-07T05:31:56Z",
"value": 123,
"products_value": 123,
"cfop": "<string>",
"url": "<string>",
"created_at": {
"date": "2000-08-17 10:24:24",
"timezone_type": 3,
"timezone": "America/Sao_Paulo"
},
"updated_at": {
"date": "2000-08-17 10:24:24",
"timezone_type": 3,
"timezone": "America/Sao_Paulo"
}
}
]
}Body
application/json
Detalhes da nota fiscal
Representa os dados para criar uma nota fiscal de um pedido
Número de série da nota
Example:
"000"
Número da nota
Example:
"000"
Data da nota
Example:
"2018-01-01"
Valor da nota
Example:
"99.99"
Chave da nota
Example:
"000"
Valor dos produtos da nota
Example:
"79.99"
URL da nota
Example:
"https://url.com"
Código Fiscal de Operações e de Prestações
Example:
"cfop"
Marca se o status do pedido será marcado como faturado
Example:
"true"
Response
Nota fiscal criada com sucesso
Show child attributes
Show child attributes
Was this page helpful?
⌘I