Skip to content

Confirm Offer

PATCH
/api/projects/offers/{assignment_uuid}/confirm
curl --request PATCH \
--url https://example.com/api/projects/offers/example/confirm

Confirm an offer (PM action). Allowed when the current user has access to the project and the offer is in ‘accepted’ state. Transitions state to ‘confirmed’.

Note: This does NOT create UserTargetLink or UserProjectLink. Those links are created only by the project-level finalize endpoint after validating confirmed coverage.

assignment_uuid
required
Assignment Uuid
string

Successful Response

Media typeapplication/json
Examplegenerated
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"
}
]
}