action docusign_billing_payments_get_payment { label: "Gets billing payment information for a specific payment." description: "Retrieves the information for a specified payment. \n\nPrivileges required: account administrator " provider: docusign method: GET path: "/v2.1/accounts/{accountId}/billing_payments/{paymentId}" encoding: json input: { type: "object" properties: { accountId: { type: "string" } paymentId: { type: "string" } } required: ["accountId", "paymentId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }