Overview
The AddLocationTag command is issued to add new location tag to an organization.
Architecture diagram
Payload example
{ "Id": "789e1234-b56c-78d9-e012-3456789fghij", "Name": "New location tag"}Schema
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "AddTeamCommand", "type": "object", "properties": { "id": { "type": "string", "description": "The unique identifier of the location tag being added to the organization." }, "name": { "type": "string", "description": "The name of the location tag being added to the organization." } }, "required": [ "id", "name" ], "additionalProperties": true}