Skip to main content
POST
/
v1
/
order
Criar pedido.
curl --request POST \
  --url https://api.staging.cartaosimples.com.br/integration/v1/order \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "cpf": "12345678901",
  "celular": "+55 (11) 91234-5678",
  "documentoEstabelecimento": "12345678000195",
  "valorSolicitado": 1500,
  "nome": "João da Silva",
  "email": "joao.silva@email.com",
  "dataDeNascimento": "1990-05-15T00:00:00Z",
  "endereco": {
    "logradouro": "Av. Paulista",
    "numero": "1578",
    "complemento": "Bloco B, Apto 1203",
    "bairro": "Bela Vista",
    "cidade": "São Paulo",
    "estado": "SP",
    "cep": "01311000"
  }
}
'
{
  "pedidoId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Documentation Index

Fetch the complete documentation index at: https://documentacao.cartaosimples.com.br/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Cabeçalho de autenticação Bearer no formato Bearer <token> onde <token> é seu TOKEN de autenticação

Body

application/json
cpf
string
required
Minimum string length: 1
Example:

"12345678901"

celular
string
required
Minimum string length: 1
Example:

"+55 (11) 91234-5678"

documentoEstabelecimento
string
required
Minimum string length: 1
Example:

"12345678000195"

valorSolicitado
number<double>
required
Example:

1500

nome
string
required
Minimum string length: 1
Example:

"João da Silva"

email
string
required
Minimum string length: 1
Example:

"joao.silva@email.com"

dataDeNascimento
string<date-time>
required
Example:

"2023-11-07T05:31:56Z"

endereco
object

Response

OK

pedidoId
string<uuid>