Skip to content

Submit Counter Offer

POST
/api/projects/offers/{assignment_uuid}/counter
curl --request POST \
--url https://example.com/api/projects/offers/example/counter \
--header 'Content-Type: application/json' \
--data '{ "rate": 1, "estimated_volume": 1, "estimated_total": 1, "deadline": 1, "counter_notes": "example" }'

Submit a counter-offer to an existing offer. Auth: Must be the offeree. Phase 3: Counter-Offer & Negotiation

assignment_uuid
required
Assignment Uuid
string
Media typeapplication/json
CounterOfferRequest

Schema for counter-offer submission

object
rate
Any of:
number
estimated_volume
Any of:
integer
estimated_total
Any of:
number
deadline
Any of:
number
counter_notes
Any of:
string
<= 1000 characters
Examplegenerated
{
"rate": 1,
"estimated_volume": 1,
"estimated_total": 1,
"deadline": 1,
"counter_notes": "example"
}

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"
}
]
}