TextMaster's Developer Documentation
HomeApp
  • Welcome!
  • Quick Start
    • Postman
    • OpenAPI
  • Overview
    • Resources in the REST API
    • Authentication
    • Troubleshooting
    • Filters
    • Workflow
    • File uploads
    • Loop
  • Guides
    • Integrator best practices
  • Apps
    • About OAuth Apps
    • Building OAuth Apps
      • Creating an OAuth App
      • Authorizing OAuth Apps
      • Scopes for OAuth Apps
    • Managing OAuth Apps
      • Modifying an OAuth App
      • Deleting an OAuth App
  • Webhooks & Events
    • Webhooks
      • Creating webhooks
      • Configuring your server for webhooks
      • Securing webhooks
      • Troubleshooting webhooks
    • Events
  • Integrations
    • Akeneo
      • Getting Started
      • Configuration
      • Usage
      • Monitoring
      • Troubleshooting
    • Salesforce Commerce Cloud
      • Getting Started
      • Configuration
      • Usage
      • Monitoring
      • Troubleshooting
  • Reference
    • Abilities
    • Authors
    • Documents
    • Categories
    • Countries
    • Expertises
    • Glossaries
    • Languages
    • Levels
    • Locales
    • Preferred Authors
    • Projects
    • Project Templates
    • Negotiated Contracts
    • Support Messages
    • Transactions
    • Uploads
    • Users
    • Work Templates
Powered by GitBook
On this page

Was this helpful?

  1. Reference

Negotiated Contracts

PreviousProject TemplatesNextSupport Messages

Last updated 1 year ago

Was this helpful?

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.

OAuth: This endpoint requires the default public scope.

Code samples

curl -G "https://api.textmaster.com/v1/clients/negotiated_contracts" \
  -H "Authorization: Bearer 37c102e8d6017d4d63625fd968aac8c225e5553f30f533d88f309499692ae310"

List Negotiated Contracts

get
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
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
    }
  ]
}
  • List negotiated contracts
  • GETList Negotiated Contracts