action linode_get_entity_transfer { label: "Entity Transfer View" description: "**DEPRECATED**. Please use [Service Transfer View](/docs/api/account/#service-transfer-view).\n" provider: linode method: GET path: "/account/entity-transfers/{token}" encoding: json output: { type: "object" description: "An object representing an Entity Transfer.\n" properties: { created: { type: "string" format: "date-time" description: "When this transfer was created.\n" } entities: { type: "object" description: "A collection of the entities to include in this transfer request, separated by type.\n" properties: { linodes: { type: "array" description: "An array containing the IDs of each of the Linodes included in this transfer.\n" items: { type: "integer" } } } } expiry: { type: "string" format: "date-time" description: "When this transfer expires. Transfers will automatically expire 24 hours after creation.\n" } is_sender: { type: "boolean" description: "If the requesting account created this transfer.\n" } status: { type: "string" description: "The status of the transfer request.\n\n`accepted`: The transfer has been accepted by another user and is currently in progress. Transfers can take up to 3 hours to complete.\n\n`cancelled`: The transfer has been cancelled by the sender.\n\n`completed`: The transfer has completed successfully.\n\n`failed`: The transfer has failed after initiation.\n\n`pending`: The transfer is ready to be accepted.\n\n`stale`: The transfer has exceeded its expiration date. It can no longer be accepted or cancelled.\n" enum: ["accepted", "cancelled", "completed", "failed", "pending", "stale"] } token: { type: "string" format: "uuid" description: "The token used to identify and accept or cancel this transfer.\n" } updated: { type: "string" format: "date-time" description: "When this transfer was last updated.\n" } } } }