Skip to main content
GET
/
storage_units
/
{id}
Get Storage Unit
curl --request GET \
  --url https://api.sandbox.isometric.com/mrv/v0/storage_units/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-client-secret: <x-client-secret>'
{
  "description": "<string>",
  "id": "sgu_1E844FWM71S0E0TM",
  "latitude": 123,
  "longitude": 123,
  "name": "<string>",
  "storage_location_id": "slc_1F3PMGVC91S0SBK3",
  "supplier_id": "spl_1CC712KFS1S0YKPS",
  "supplier_reference_id": "<string>"
}

This endpoint is in beta and requires opting-in.

Please contact support if you’re interested in using this endpoint.

Authorizations

Authorization
string
header
required

A JWT Bearer token header for authentication and authorization, in the format Authorization: Bearer <token>

Headers

x-client-secret
string
required

A secret token identifying the client connecting to the API

Examples:

"Syou3EZiO5vuMEgNyBeA8cjEMYOnQDwP"

Path Parameters

id
string
required

Response

Successful Response

id
string
required
Required string length: 20 - 37
Examples:

"sgu_1E844FWM71S0E0TM"

"sgu_1DTBHQEBGSBXBCZV"

name
string
required

The name of the storage unit

Maximum length: 100
storage_location_id
string
required

The ID of the storage location this storage unit belongs to

Required string length: 20 - 37
Examples:

"slc_1F3PMGVC91S0SBK3"

"slc_1DCY5K78BSBX3XMZ"

supplier_id
string
required

The ID of the supplier this storage location belongs to

Required string length: 20 - 37
Examples:

"spl_1CC712KFS1S0YKPS"

"spl_1FJBMMGR3SBXKDME"

description
string | null

Optional description of the storage unit

latitude
number | null

The latitude coordinate of the storage unit

longitude
number | null

The longitude coordinate of the storage unit

supplier_reference_id
string | null

Optional supplier-specific reference ID for the storage location A string that must be unique for all resources created by a specific supplier. It can be used by a client to identify the correct objects in their system.

Required string length: 1 - 100