API Documentation
- Additional Workflow Step
- Analysis
- Async Request
- Authentication
- Bilingual File
- Business Unit
- Buyer
- Client
- Connector
- Conversations
- Cost Center
- Custom Fields
- Custom File Type
- Domain
- Due Date Scheme
- Email Template
- File
- Glossary
- Import settings
- Job
- Language AI
- Language Quality Assessment
- Machine Translation
- Machine Translation Settings
- Mapping
- Net Rate Scheme
- Notifications
- Price List
- GETList price lists
- POSTCreate price list
- GETGet price list
- PUTUpdate price list
- DELDelete price list
- POSTClone price list
- GETExport translation price list
- POSTImport translation price list
- GETList price sets
- POSTAdd language pairs
- DELRemove language pairs
- POSTEdit minimum prices
- POSTEdit prices
- DELRemove language pair
- GET
- Project
- Project Reference File
- Project Template
- Provider
- Quality Assurance
- Quote
- SCIM
- Segmentation Rules
- Service
- Spell Check
- SubDomain
- Supported Languages
- Term Base
- Translation
- Translation Memory
- User
- Vendor
- Webhook
- Workflow changes
- Workflow Step
- XML Assistant
Price List
Add language pairs
POST
/
api2
/
v1
/
priceLists
/
{priceListUid}
/
priceSets
Add language pairs
Copy
Ask AI
curl --request POST \
--url https://cloud.memsource.com/web/api2/v1/priceLists/{priceListUid}/priceSets \
--header 'Content-Type: application/json' \
--data '{
"sourceLanguages": [
"<string>"
],
"targetLanguages": [
"<string>"
]
}'
Copy
Ask AI
{
"priceSets": [
{
"sourceLang": "<string>",
"targetLang": "<string>",
"minimumPrice": 123,
"prices": [
{
"workflowStep": {
"id": "<string>",
"uid": "<string>",
"name": "<string>",
"abbr": "<string>",
"order": 123,
"lqaEnabled": true
},
"price": 123
}
]
}
]
}
Path Parameters
Body
application/json
Response
201
application/json
Created
The response is of type object
.
Was this page helpful?
Add language pairs
Copy
Ask AI
curl --request POST \
--url https://cloud.memsource.com/web/api2/v1/priceLists/{priceListUid}/priceSets \
--header 'Content-Type: application/json' \
--data '{
"sourceLanguages": [
"<string>"
],
"targetLanguages": [
"<string>"
]
}'
Copy
Ask AI
{
"priceSets": [
{
"sourceLang": "<string>",
"targetLang": "<string>",
"minimumPrice": 123,
"prices": [
{
"workflowStep": {
"id": "<string>",
"uid": "<string>",
"name": "<string>",
"abbr": "<string>",
"order": 123,
"lqaEnabled": true
},
"price": 123
}
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.