action alertersystem_api_partition_id_get { label: "Retrieves a Partition resource." description: "Retrieves a Partition resource." provider: alertersystem method: GET path: "/api/partition/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The Partition resource is a collection of siloed monitor and alert environments in the user account." required: ["partitionName"] properties: { alertServices: { type: "array" description: "The alert services that are related to this resource." items: { type: "string" format: "iri-reference" } } createdAt: { type: "string" format: "date-time" description: "When the resource instance was created. This date-time is in the UTC timezone." } dataSegmentCode: { type: "string" description: "User-provided string on which to segment and filter data. Max 50 characters." } id: { type: "string" format: "uuid" description: "The unique identifier of the resource instance." } monitors: { type: "array" description: "The monitors that are associated with this partition." items: { type: "string" format: "iri-reference" } } partitionName: { type: "string" description: "The name of the partition. Max 255 characters." } partitionNotes: { type: "string" description: "Notes about the partition. Max 10,000 characters. Formatting using Markdown is allowed. HTML will be removed." } resourceOwner: { type: "string" description: "The name of the person who owns this resource." } teamInvitations: { type: "array" description: "The team invitations that are related to this resource." items: { type: "string" format: "iri-reference" } } teamMembers: { type: "array" description: "The team members of this resource." items: { type: "string" format: "iri-reference" } } } } }