action id4i_get_all_collections_of_organization { label: "Get collections of organization" description: "Retrieving all collections of an organization in a paginated manner. You may filter the results by specifying id4n properties with filter operations (eq, in, ne) in the query parameters. e.g. `com.yourcompany.orderId.eq=1234` " provider: id4i method: GET path: "/api/v1/organizations/{organizationId}/collections" encoding: json input: { type: "object" properties: { label: { type: "string" } labelPrefix: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } organizationId: { type: "string" } property: { type: "array" items: { type: "string" } } type: { type: "string" enum: ["ROUTING_COLLECTION", "LOGISTIC_COLLECTION", "LABELLED_COLLECTION"] } } required: ["organizationId"] 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 collection has been created" } holderOrganizationId: { type: "string" description: "Organization namespace of the holder of the collection" } id4n: { type: "string" description: "The ID" } label: { type: "string" } ownerOrganizationId: { type: "string" description: "Organization namespace of the collection owner" } physicalState: { type: "string" description: "Physical attachment state of the collection" enum: ["UNATTACHED", "ATTACHED", "DETACHED"] } type: { type: "string" enum: ["ROUTING_COLLECTION", "LOGISTIC_COLLECTION", "LABELLED_COLLECTION"] } } } } 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" } } } }