### GET /contatos Source: https://developer.bling.com.br/referencia Retrieves a list of contacts registered in the Bling system. ```APIDOC ## GET /contatos ### Description Retrieves a paginated list of contacts (customers, suppliers) registered in the account. ### Method GET ### Endpoint https://api.bling.com.br/Api/v3/contatos ### Parameters #### Query Parameters - **pagina** (integer) - Optional - Page number for pagination - **limite** (integer) - Optional - Number of records per page ### Request Example GET /contatos?pagina=1&limite=20 ### Response #### Success Response (200) - **data** (array) - List of contact objects #### Response Example { "data": [ { "id": 123456, "nome": "Exemplo Cliente", "tipo": "C" } ] } ``` -------------------------------- ### POST /pedidos/vendas Source: https://developer.bling.com.br/referencia Creates a new sales order within the Bling ERP system. ```APIDOC ## POST /pedidos/vendas ### Description Creates a new sales order record in the Bling system. ### Method POST ### Endpoint https://api.bling.com.br/Api/v3/pedidos/vendas ### Parameters #### Request Body - **cliente** (object) - Required - Contact information - **itens** (array) - Required - List of products included in the order ### Request Example { "cliente": { "id": 123456 }, "itens": [{ "codigo": "PROD01", "quantidade": 1 }] } ### Response #### Success Response (201) - **id** (integer) - The ID of the created sales order #### Response Example { "data": { "id": 987654 } } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.