POST api/v2/projects

Create new project

Request Information

URI Parameters

None.

Body Parameters

ProjectDetails
NameDescriptionTypeAdditional information
name

Project name

string

None.

code

Project code

string

None.

update-date

Last update date

date

None.

status

Status (active or not)

TagvueEntityStatus

None.

entity-id

Identifying entity-id of the entity, this is expected to be unique

string

None.

Request Formats

application/xml, text/xml

Sample:
<project entity-id="sample string 4" xmlns="urn:tagvue:am">
  <status>inactive</status>
  <name>sample string 1</name>
  <code>sample string 2</code>
  <update-date>2025-05-30T18:08:37.0362943-07:00</update-date>
</project>

application/json, text/json

Sample:
{
  "name": "sample string 1",
  "code": "sample string 2",
  "update-date": "2025-05-30T18:08:37.0362943-07:00",
  "status": 0,
  "entity-id": "sample string 4"
}

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.