Negotiated Contracts
List negotiated contracts
A negotiated contract is a special arrangement between client and TextMaster which affects price-per-word paid by client on their projects. Normally, it's a fixed amount price reduction.
Authorizations
Query parameters
pageintegerOptional
Search results are limited to 100 items. Specify page number to read more than the first page.
Responses
200
Lists Negotiated Contracts
application/json
401
Unauthorized
application/json
get
GET /v1/clients/negotiated_contracts HTTP/1.1
Host: api.textmaster.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"total_pages": 1,
"count": 1,
"page": 1,
"per_page": 20,
"previous_page": null,
"next_page": null,
"negotiated_contracts": [
{
"id": "61698ab18b81926d91c0e8d7",
"name": "Special eCommerce 1",
"client_pricing": -5,
"client_pricing_in_currency": -0.007
}
]
}
Code samples
curl -G "https://api.textmaster.com/v1/clients/negotiated_contracts" \
-H "Authorization: Bearer 37c102e8d6017d4d63625fd968aac8c225e5553f30f533d88f309499692ae310"
Last updated
Was this helpful?