action id4i_get_id4n { label: "Retrieve ID4n information" description: "Retrieving basic information about an ID like the type and the creation time." provider: id4i method: GET path: "/api/v1/id4ns/{id4n}" encoding: json input: { type: "object" properties: { id4n: { type: "string" } organizationId: { type: "string" } } required: ["id4n"] additionalProperties: false } output: { type: "object" properties: { createdTimestamp: { type: "integer" format: "int64" description: "The UTC unix timestamp of when this ID has been created" } holderOrganizationId: { type: "string" description: "Organization namespace of the holder of the ID" } id4n: { type: "string" description: "The ID" } label: { type: "string" } ownerOrganizationId: { type: "string" description: "Organization namespace of the ID owner" } properties: { type: "object" description: "The properties of the organization" } type: { type: "string" description: "The type of ID" enum: ["GUID", "ROUTING_COLLECTION", "LOGISTIC_COLLECTION", "LABELLED_COLLECTION"] } } } }