Skip to main content
GET
/
api
/
management
/
spreadsheet-operations
/
export
/
{type}
/
columns
Obter colunas do export
curl --request GET \
  --url https://api.olie.ai/api/management/spreadsheet-operations/export/{type}/columns \
  --header 'Authorization: Bearer <token>'
{
  "response": true,
  "columns": [
    {
      "key": "project.id",
      "required": true,
      "importable": true
    },
    {
      "key": "project.name",
      "required": true,
      "importable": true
    },
    {
      "key": "project.code",
      "required": false,
      "importable": false
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

type
enum<string>
required

Tipo de operação (domínio alvo). Atualmente: project.

Available options:
project

Response

Colunas retornadas com sucesso

response
boolean
Example:

true

columns
object[]