Skip to content

Remove lockers from a locker group

Request

Removes the specified lockers from the locker group.

Security
ApiKeyAuth
Path
uidinteger, (int64)required

The unique identifier of the locker group.

Example:6838265090
Bodyapplication/jsonrequired
lockerUidsArray of stringsrequired

The UIDs of the lockers to remove from the group.

Example:
[ "10000019" ]
curl -i -X DELETE \
  https://docs.glsnxt.com/_mock/openapi-carrier-integration-api/locker-groups/6838265090/lockers \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY_HERE' \
  -d '{
    "lockerUids": [
      "10000019"
    ]
  }'

Responses

Lockers removed from the group successfully.

Bodyapplication/json
lockersRemovedArray of stringsrequired

The UIDs of the lockers that were removed from the group.

Example:
[ "10000019" ]
Response
{ "lockersRemoved": [ "10000019" ] }