View Source DocuSign.Api.Payments (DocuSign v1.2.0)
API calls for all endpoints tagged Payments
.
Summary
Functions
Gets billing payment information for a specific payment. Retrieves the information for a specified payment. Privileges required: account administrator
Gets payment information for one or more payments. Retrieves a list containing information about one or more payments. If the from date or to date queries are not used, the response returns payment information for the last 365 days. Privileges required: account administrator
Posts a payment to a past due invoice.
Posts a payment to a past due invoice. This method can only be used if the paymentAllowed
value for a past due invoice is true. This can be determined calling Billing::listInvoicesPastDue. The response returns information for a single payment if a payment ID was used in the endpoint, or a list of payments. If the from date or to date queries or payment ID are not used, the response returns payment information for the last 365 days. If the request was for a single payment ID, the nextUri
and previousUri
properties are not returned. Privileges required: account administrator
Functions
billing_payments_get_payment(connection, account_id, payment_id, opts \\ [])
View Source@spec billing_payments_get_payment( Tesla.Env.client(), String.t(), String.t(), keyword() ) :: {:ok, DocuSign.Model.BillingPaymentItem.t()} | {:ok, DocuSign.Model.ErrorDetails.t()} | {:error, Tesla.Env.t()}
Gets billing payment information for a specific payment. Retrieves the information for a specified payment. Privileges required: account administrator
Parameters
connection
(DocuSign.Connection): Connection to serveraccount_id
(String.t): The external account number (int) or account ID GUID.payment_id
(String.t): The ID of the payment.opts
(keyword): Optional parameters
Returns
{:ok, DocuSign.Model.BillingPaymentItem.t}
on success{:error, Tesla.Env.t}
on failure
billing_payments_get_payment_list(connection, account_id, opts \\ [])
View Source@spec billing_payments_get_payment_list(Tesla.Env.client(), String.t(), keyword()) :: {:ok, DocuSign.Model.BillingPaymentsResponse.t()} | {:ok, DocuSign.Model.ErrorDetails.t()} | {:error, Tesla.Env.t()}
Gets payment information for one or more payments. Retrieves a list containing information about one or more payments. If the from date or to date queries are not used, the response returns payment information for the last 365 days. Privileges required: account administrator
Parameters
connection
(DocuSign.Connection): Connection to serveraccount_id
(String.t): The external account number (int) or account ID GUID.opts
(keyword): Optional parameters:from_date
(String.t): Specifies the date/time of the earliest payment in the account to retrieve.:to_date
(String.t): Specifies the date/time of the latest payment in the account to retrieve.
Returns
{:ok, DocuSign.Model.BillingPaymentsResponse.t}
on success{:error, Tesla.Env.t}
on failure
@spec billing_payments_post_payment(Tesla.Env.client(), String.t(), keyword()) :: {:ok, DocuSign.Model.ErrorDetails.t()} | {:ok, DocuSign.Model.BillingPaymentResponse.t()} | {:error, Tesla.Env.t()}
Posts a payment to a past due invoice.
Posts a payment to a past due invoice. This method can only be used if the paymentAllowed
value for a past due invoice is true. This can be determined calling Billing::listInvoicesPastDue. The response returns information for a single payment if a payment ID was used in the endpoint, or a list of payments. If the from date or to date queries or payment ID are not used, the response returns payment information for the last 365 days. If the request was for a single payment ID, the nextUri
and previousUri
properties are not returned. Privileges required: account administrator
Parameters
connection
(DocuSign.Connection): Connection to serveraccount_id
(String.t): The external account number (int) or account ID GUID.opts
(keyword): Optional parameters:body
(BillingPaymentRequest):
Returns
{:ok, DocuSign.Model.BillingPaymentResponse.t}
on success{:error, Tesla.Env.t}
on failure