Skip to main content
POST
/
v1
/
projects
Create project
curl --request POST \
  --url https://{tenant}.torchapp.com.au/api/v1/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "b",
  "type": "n",
  "project_identifier": "g",
  "evaluation_title": "z",
  "stage": "m",
  "location": "i",
  "start_date": "2026-01-27T02:53:04",
  "end_date": "2052-02-20",
  "overview": "architecto",
  "status": "Archived",
  "parent_id": "<string>",
  "classification": "Secondary",
  "currency": "n",
  "relationship_type": "g"
}
'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required
Maximum string length: 255
Example:

"b"

type
string
Maximum string length: 255
Example:

"n"

project_identifier
string
Maximum string length: 255
Example:

"g"

evaluation_title
string
Maximum string length: 255
Example:

"z"

stage
string
Maximum string length: 255
Example:

"m"

location
string
Maximum string length: 255
Example:

"i"

start_date
string<date-time>
Example:

"2026-01-27T02:53:04"

end_date
string<date>
Example:

"2052-02-20"

overview
string
Example:

"architecto"

status
enum<string>
Available options:
Active,
Archived
Example:

"Archived"

parent_id
string
classification
enum<string>
Available options:
Primary,
Secondary
Example:

"Secondary"

currency
string
Maximum string length: 3
Example:

"n"

relationship_type
string
Maximum string length: 255
Example:

"g"

Response

Project created

The response is of type object.