API 1.0 / Orders

GET /orders/:identifier/quotes

List quotes of an order

This method has the URL https://api.toptranslation.com/v1/orders/:identifier/quotes and returns an array of quotes.

Required arguments

access_token
Token to authenticate a user
String
identifier
Part of URL of the request. Unique identifier of the order
String

Response

Returns an array of quotes.

{
  meta: {
    status: 200
  },
  data: [
    {
      identifier: 'P20160203420-1E',
      state: 'accepted',
      value: 139.00,
      product: 'expert',
      created_at: '2015-12-30 09:56:12'            
    },
    {
      identifier: 'P20160203420-1B',
      state: 'rejected',
      value: 99.00,
      product: 'basic',
      created_at: '2015-12-30 09:56:12'            
    },
  ]
}

Errors

403 - User not authenticated
User is not allowed to access the resource or execute the method.
404 - Order not found
Order was not found or is not shared with user.