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": {}
}
}Retorna os detalhes de um projeto específico pelo ID.
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": {}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID do projeto
Was this page helpful?