curl --request POST \
--url https://api.example.com/v2/transponders/shipments/{id}/receive/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"transponders": [
123
],
"remarks": "<string>"
}
'{
"transponders": [
123
],
"remarks": "<string>"
}Receive a shipment of transponders
curl --request POST \
--url https://api.example.com/v2/transponders/shipments/{id}/receive/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"transponders": [
123
],
"remarks": "<string>"
}
'{
"transponders": [
123
],
"remarks": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?