Skip to main content
POST
/
api2
/
v1
/
priceLists
Create price list
curl --request POST \
  --url https://cloud.memsource.com/web/api2/v1/priceLists \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "currencyCode": "<string>",
  "name": "<string>",
  "billingUnit": "Word",
  "isDefault": true
}
'
{
  "name": "<string>",
  "billingUnit": "Character",
  "currencyCode": "<string>",
  "dateCreated": "2023-11-07T05:31:56Z",
  "id": "<string>",
  "isDefault": true,
  "priceSets": [
    {
      "minimumPrice": 123,
      "prices": [
        {
          "price": 123,
          "workflowStep": {
            "abbr": "<string>",
            "id": "<string>",
            "lqaEnabled": true,
            "name": "<string>",
            "order": 123,
            "uid": "<string>"
          }
        }
      ],
      "sourceLang": "<string>",
      "targetLang": "<string>"
    }
  ],
  "uid": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://developers.phrase.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Get a token from auth/login endpoint and then pass it in the Authorization HTTP header in every subsequent API call. For more information visit our help center.

Body

application/json
currencyCode
string
required
name
string
required
billingUnit
enum<string>

Default: Word

Available options:
Word,
Page,
Character,
Hour
isDefault
boolean

Default: false

Response

Created

Price list with set of prices for language pairs

name
string
required
billingUnit
enum<string>
Available options:
Character,
Word,
Page,
Hour
currencyCode
string
dateCreated
string<date-time>
id
string
read-only
isDefault
boolean
priceSets
object[]
uid
string