action nowpayments_get_transfer { label: "Get transfer" description: "Get the actual information about the transfer. You need to provide the transfer ID in the request." provider: nowpayments method: GET path: "/v1/sub-partner/transfer/{id}" encoding: json output: { type: "object" properties: { result: { type: "object" properties: { amount: { type: "string" } created_at: { type: "string" } currency: { type: "string" } from_sub_id: { type: "string" } id: { type: "string" } status: { type: "string" } to_sub_id: { type: "string" } updated_at: { type: "string" } } } } } }