Skip to main content
GET
/
api2
/
v1
/
quotes
/
{quoteUid}
Get quote
curl --request GET \
  --url https://cloud.memsource.com/web/api2/v1/quotes/{quoteUid} \
  --header 'Authorization: <api-key>'
{
  "id": 123,
  "uid": "<string>",
  "name": "<string>",
  "status": "APPROVED",
  "currency": "<string>",
  "billingUnit": "Character",
  "createdBy": {
    "firstName": "<string>",
    "lastName": "<string>",
    "userName": "<string>",
    "email": "<string>",
    "role": "SYS_ADMIN",
    "id": "<string>",
    "uid": "<string>"
  },
  "dateCreated": "2023-11-07T05:31:56Z",
  "totalPrice": 123,
  "netRateScheme": {
    "id": "<string>",
    "uid": "<string>",
    "name": "<string>",
    "isDefault": true,
    "dateCreated": "2023-11-07T05:31:56Z",
    "createdBy": {
      "firstName": "<string>",
      "lastName": "<string>",
      "userName": "<string>",
      "email": "<string>",
      "role": "SYS_ADMIN",
      "id": "<string>",
      "uid": "<string>"
    }
  },
  "priceList": {
    "id": "<string>",
    "uid": "<string>",
    "name": "<string>"
  },
  "workflowStepList": [
    {
      "name": "<string>",
      "id": "<string>",
      "uid": "<string>",
      "order": 123,
      "lqaEnabled": true
    }
  ],
  "provider": {
    "type": "<string>",
    "id": "<string>",
    "uid": "<string>"
  },
  "customerEmail": "<string>",
  "quoteType": "BUYER",
  "editable": true,
  "outdated": true,
  "analyseUid": "<string>",
  "innerId": 123
}

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.

Path Parameters

quoteUid
string
required

Response

successful operation

id
integer<int64>
uid
string
name
string
status
enum<string>
Available options:
APPROVED,
DECLINED,
DRAFT,
FOR_APPROVAL,
NEW
currency
string
billingUnit
enum<string>
Available options:
Character,
Word,
Page,
Hour
createdBy
object
dateCreated
string<date-time>
totalPrice
number<double>
netRateScheme
object
priceList
object
workflowStepList
object[]
provider
object
customerEmail
string
quoteType
enum<string>
Available options:
BUYER,
PROVIDER
editable
boolean
outdated
boolean
analyseUid
string
innerId
integer<int32>