action id4i_list_elements_of_collection { label: "List contents of the collection" provider: id4i method: GET path: "/api/v1/collections/{id4n}/elements" encoding: json input: { type: "object" properties: { id4n: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } organizationId: { type: "string" } } required: ["id4n"] additionalProperties: false } output: { type: "object" required: ["elements", "limit", "offset"] properties: { elements: { type: "array" items: { type: "object" properties: { createdTimestamp: { type: "integer" format: "int64" description: "The UTC unix timestamp of when this GUID has been created" } holderOrganizationId: { type: "string" description: "Organization namespace of the GUID holder" } id4n: { type: "string" description: "The ID" } ownerOrganizationId: { type: "string" description: "Organization namespace of the GUID owner" } physicalState: { type: "string" description: "Physical attachment state of the GUID" enum: ["UNATTACHED", "ATTACHED", "DETACHED"] } properties: { type: "object" description: "The properties of the organization" } } } } limit: { type: "integer" format: "int32" description: "The number of returned elements" } offset: { type: "integer" format: "int32" description: "Starting with the n-th element" } total: { type: "integer" format: "int32" description: "The total number of elements" } } } }