action nowpayments_get_sub_partner_balance { label: "Get sub-partner balance" description: "This request can be made only from a whitelisted IP. \nIf IP whitelisting is disabled, this request can be made by any user that has an API key." provider: nowpayments method: GET path: "/v1/sub-partner/balance/{id}" encoding: json input: { type: "object" properties: { "x-api-key": { type: "string" } } additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { balances: { type: "object" properties: { usddtrc20: { type: "object" properties: { amount: { type: "number" } pendingAmount: { type: "number" } } } usdtbsc: { type: "object" properties: { amount: { type: "number" } pendingAmount: { type: "number" } } } } } subPartnerId: { type: "string" } } } } } }