curl --request PUT \
--url https://api.vooma.ai/v0/locations/{locationId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"location": {
"externalIds": [
{
"type": "CUSTOM",
"value": "<string>"
}
],
"address": {
"country": "<string>",
"postalCode": "<string>",
"city": "<string>",
"state": "<string>",
"addressTwo": "<string>",
"addressOne": "<string>"
},
"geoCoordinates": {
"longitude": 123,
"latitude": 123
},
"name": "<string>"
}
}
'{
"externalIds": [
{
"type": "CUSTOM",
"value": "<string>"
}
],
"address": {
"country": "<string>",
"postalCode": "<string>",
"city": "<string>",
"state": "<string>",
"addressTwo": "<string>",
"addressOne": "<string>"
},
"geoCoordinates": {
"longitude": 123,
"latitude": 123
},
"name": "<string>",
"id": "<string>"
}curl --request PUT \
--url https://api.vooma.ai/v0/locations/{locationId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"location": {
"externalIds": [
{
"type": "CUSTOM",
"value": "<string>"
}
],
"address": {
"country": "<string>",
"postalCode": "<string>",
"city": "<string>",
"state": "<string>",
"addressTwo": "<string>",
"addressOne": "<string>"
},
"geoCoordinates": {
"longitude": 123,
"latitude": 123
},
"name": "<string>"
}
}
'{
"externalIds": [
{
"type": "CUSTOM",
"value": "<string>"
}
],
"address": {
"country": "<string>",
"postalCode": "<string>",
"city": "<string>",
"state": "<string>",
"addressTwo": "<string>",
"addressOne": "<string>"
},
"geoCoordinates": {
"longitude": 123,
"latitude": 123
},
"name": "<string>",
"id": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
Ok