Skip to main content
GET
/
api
/
management
/
projects
/
{id}
Obter um projeto
curl --request GET \
  --url https://api.olie.ai/api/management/projects/{id} \
  --header 'Authorization: Bearer <token>'
{
  "response": "<boolean>",
  "project": {
    "id": "<uuid>",
    "old_id": "<string>",
    "code": "<string>",
    "name": "<string>",
    "description": "<string>",
    "impact": "<integer>",
    "parent_id": "<string>",
    "frame_id": "<string>",
    "created_at": "<dateTime>",
    "updated_at": "<dateTime>",
    "customer_id": "<string>",
    "contact_id": "<integer>",
    "share_token": "<string>",
    "share_settings": "<string>",
    "merged_id": "<string>",
    "status": "<integer>",
    "budget": "<float>",
    "is_template": "<boolean>",
    "created_by": "<string>",
    "deleted_at": "<dateTime>",
    "customer": {},
    "contact": {},
    "frame": {},
    "form": {},
    "step_form": {},
    "merged_project": {},
    "forum": {},
    "costs": {}
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

ID do projeto

Response

Projeto retornado com sucesso

Esquema de um projeto completo

response
boolean
Example:

true

project
Project · object