action id4i_search_by_alias { label: "Search for GUIDs by alias" provider: id4i method: GET path: "/api/v1/search/guids" encoding: json input: { type: "object" properties: { alias: { type: "string" } aliasType: { type: "string" enum: ["gtin", "article", "mapp", "item", "rfid", "tracking", "eclass", "unspsc", "product", "material", "reference"] } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } required: ["alias", "aliasType"] 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" } } } }