Visit appVisit websiteBook a demo
  • Get Started
    • Welcome
  • Client API
LogoLogo
Visit appVisit websiteBook a demo
Client APIProjects

POST
https://host.com/projects/
POST
/projects/
1curl -X POST /projects/ \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "name": "string"
6}'
Try it
201Created
1{
2 "data": {
3 "project_id": "string",
4 "name": "string",
5 "external_id": "string",
6 "custom_fields": [
7 {
8 "name": "string",
9 "value": "string"
10 }
11 ],
12 "client_purchase_order": {
13 "reference": "string"
14 }
15 }
16}
Was this page helpful?
Previous

Bulk Via File Create

Next
Built with
Create a new project.
Create

Authentication

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

Request

This endpoint expects an object.
namestringRequired<=255 characters
The name of the project.
external_idstringOptionalDefaults to
An external identifier for the project, optional.
custom_fieldslist of objectsOptional
An array of custom fields specific to the project, optional.
client_purchase_orderobjectOptional
Client purchase order data for the project.

Response

dataobject
The project object. A project is used to track client spend, and can span multiple contracts.

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