action intellifi_add_spot_list { label: "Create spot list" provider: intellifi method: POST path: "/sets/spotlists" 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" description: "Unique identifier for resource." } label: { type: "string" description: "A name or a label for this resource. This is used in the user interface, may be empty." } list: { type: "string" description: "Url to the individual resource." } metadata: { type: "object" description: "Object of searchable metadata for this resource. Can be freely used to store metadata properties." } sha1: { type: "string" description: "The sha1 checksum of the list. This will change when the list is mutated." } 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." } total: { type: "integer" description: "Total amount of items in this set" } } } 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" } } } }