action intellifi_update_location { label: "Update existing location" provider: intellifi method: PUT path: "/locations/{id}" encoding: json input: { type: "object" properties: { custom: { description: "The `custom` value is only for your custom references, you may use it to save additional attributes. The custom value is not used in any other place. This field may contain any datatype that you like: null (default), string, integer, boolean, object etc..." type: "object" } id: { type: "string" } label: { type: "string" description: "A name or a label for this resource. This is used in the user interface, may be empty." } metadata: { type: "object" description: "Object of searchable metadata for this resource. Can be freely used to store metadata properties." } time_created: { type: "string" format: "dateTime" description: "[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) formatted string for when this resource was created." } time_updated: { type: "string" format: "dateTime" description: "[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) formatted string for when this resource was updated." } url: { type: "string" description: "Url to the individual resource." } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { resource: { type: "object" properties: { id: { type: "string" description: "Unique identifier for resource." } url: { type: "string" description: "Url to the individual resource." } } } status: { type: "integer" description: "Status code" } } } }