action id4i_update_guid { label: "Change GUID information." description: "Allows ownership transfer." provider: id4i method: PATCH path: "/api/v1/guids/{id4n}" encoding: json input: { 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" } 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" } } required: ["id4n"] additionalProperties: false } output: { type: "object" } }