Get the details of a consignment note

Path Parameters
  • consignmentId
    Type: stringFormat: uuid
    required
  • consignmentNoteId
    Type: stringFormat: uuid
    required
Responses
  • application/json
Request Example for get/v1/consignments/{consignmentId}/notes/{consignmentNoteId}
curl https://api.consignlyhq.com/v1/consignments/123e4567-e89b-12d3-a456-426614174000/notes/123e4567-e89b-12d3-a456-426614174000
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "createdUtc": "datetime (YYYY-MM-DDTHH:MM:SSZ)",
  "createdBy": null,
  "note": null,
  "displayOnPrintOut": true,
  "attachments": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "fileName": null,
      "contentType": null,
      "printType": "enum (Label = 1, Document = 2)"
    }
  ]
}