action nowpayments_get_all_transfers { label: "Get all transfers" description: "Returns the entire list of transfers created by your sub-partners." provider: nowpayments method: GET path: "/v1/sub-partner/transfers" encoding: json input: { type: "object" properties: { id: { type: "string" } limit: { type: "string" } offset: { type: "string" } order: { type: "string" } status: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { count: { type: "number" } result: { type: "array" items: { 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" } } } } } } }