List My Offers
GET
/api/projects/offers/my
const url = 'https://example.com/api/projects/offers/my';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/projects/offers/myReturn offers where current user is the assignee (offered_to_user_id). Filters by assignable states (offer/negotiating/accepted/confirmed/canceled/rejected) and is_latest=True. Excludes offers where the translator was selected (UserTargetLink exists). Keeps rejected offers visible so translator sees what happened in the negotiation.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example