curl --request PATCH \
--url http://localhost:3000/v1/analyses/{id}/disposition \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"disposition": "sold",
"notes": "<string>",
"deal_amount": 1,
"deal_closed_at": "2023-11-07T05:31:56Z"
}
'curl --request PATCH \
--url http://localhost:3000/v1/analyses/{id}/disposition \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"disposition": "sold",
"notes": "<string>",
"deal_amount": 1,
"deal_closed_at": "2023-11-07T05:31:56Z"
}
'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Default Response