Projects
Update a project
The ID of the project to update.
Name for this project
Description HTML for this project
Customer portal visible for this project
Start date for this project, in RFC 3339 format
End date for this project, in RFC 3339 format
Whether the project is archived
Customer portal visible for this project
Description HTML for this project
End date for this project, in RFC 3339 format
Whether the project is archived
Name for this project
Start date for this project, in RFC 3339 format
PATCH /projects/{id} HTTP/1.1
Host: api.usepylon.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 129
{
"customer_portal_visible": true,
"description_html": "text",
"end_date": "text",
"is_archived": true,
"name": "text",
"start_date": "text"
}
{
"data": {
"account": {
"id": "text"
},
"archived_at": "text",
"created_at": "text",
"customer_portal_visible": true,
"description_html": "text",
"end_date": "text",
"id": "text",
"is_archived": true,
"name": "text",
"project_template": {
"id": "text"
},
"start_date": "text",
"updated_at": "text"
},
"request_id": "text"
}
Delete an existing project
The ID of the project to delete.
DELETE /projects/{id} HTTP/1.1
Host: api.usepylon.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"request_id": "text"
}
Create a project
Name for this project
Description HTML for this project
Customer portal visible for this project
false
Start date for this project, in RFC 3339 format
End date for this project, in RFC 3339 format
Account ID for this project
Project template ID for this project
POST /projects HTTP/1.1
Host: api.usepylon.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"data": {
"account": {
"id": "text"
},
"archived_at": "text",
"created_at": "text",
"customer_portal_visible": true,
"description_html": "text",
"end_date": "text",
"id": "text",
"is_archived": true,
"name": "text",
"project_template": {
"id": "text"
},
"start_date": "text",
"updated_at": "text"
},
"request_id": "text"
}
Last updated
Was this helpful?