action id4i_get_guid { label: "Retrieve GUID information" provider: id4i method: GET path: "/api/v1/guids/{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 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" } } } }