action id4i_find_collection { label: "Find collection" provider: id4i method: GET path: "/api/v1/collections/{id4n}" encoding: json input: { type: "object" properties: { id4n: { type: "string" } } required: ["id4n"] additionalProperties: false } output: { 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"] } } } }