Skip to content

Activate Project

POST
/api/upload/projects/{project_id}/activate
curl --request POST \
--url https://example.com/api/upload/projects/example/activate

Activate a project by its external project_id (UUID-like), confirm offers, and generate target rows where needed. Returns the internal numeric id and new state.

project_id
required
Project Id
string

Successful Response

Media typeapplication/json
ActivateProjectResponse
object
project_id
required
Project Id

Canonical external string ID for the project (UUID-like)

string
state
required
State

Lifecycle state of the project after activation

string
Examplegenerated
{
"project_id": "example",
"state": "example"
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}