POST
/
projects
/
{project}
/
tables
/
{table}
/
records
/
search
curl --request POST \
  --url https://api.base39.com.br/v1/{workspace}/projects/{project}/tables/{table}/records/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "f_zmHL6ZWVkZogjCBMYwVMT": "São Paulo",
  "CNPJ": "57778216000108"
}'
[
  {
    "report": {
      "sections": [
        {
          "status": "done",
          "title": "Resumo",
          "value": "..."
        },
        {
          "status": "processing",
          "title": "Histórico",
          "value": "..."
        }
      ]
    },
    "fields": {
      "email": "joao@email.com",
      "nome": "João Silva",
      "f_zmHL6ZWVkZogjCBMYwVMT": "São Paulo"
    }
  }
]

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

project
string
required

Identificador do projeto

table
string
required

Identificador da tabela

Body

application/json · object
Filtros de pesquisa. As chaves são dinâmicas e podem ser qualquer campo da base.

The body is of type object.

Response

200 - application/json
Resultados da pesquisa

The response is of type object[].