Skip to main content

Barcodes API

Barcodes API

Request Body
  • order_sample_details object[]
  • Array [
  • lab_barcode string[]
  • order_sample_id number
  • ]
Responses


Schema
    any
POST /cerberus/dexter_third_party_service/v1/external/barcodes

Request

Base URL
https://jupiterinternalapi.1mg.com
Body

{
"order_sample_details": [
{
"lab_barcode": [
"a1234567",
"b1234567"
],
"order_sample_id": 1234
},
{
"lab_barcode": [
"a12367",
"7673"
],
"order_sample_id": 345
}
]
}
curl / cURL
curl -L -X POST 'https://jupiterinternalapi.1mg.com/cerberus/dexter_third_party_service/v1/external/barcodes' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"order_sample_details": [
{
"lab_barcode": [
"a1234567",
"b1234567"
],
"order_sample_id": 1234
},
{
"lab_barcode": [
"a12367",
"7673"
],
"order_sample_id": 345
}
]
}'