curl --request GET \
--url https://api.dots.dev/api/v2/accounts-payable/vendors/{vendor_id}/payment-methods/{payment_method_id} \
--header 'Authorization: Basic <encoded-value>'
{
"name": "<string>",
"ach_account_number": "<string>",
"ach_routing_number": "<string>",
"ach_account_type": "checking"
}
Get details of vendor payment method
curl --request GET \
--url https://api.dots.dev/api/v2/accounts-payable/vendors/{vendor_id}/payment-methods/{payment_method_id} \
--header 'Authorization: Basic <encoded-value>'
{
"name": "<string>",
"ach_account_number": "<string>",
"ach_routing_number": "<string>",
"ach_account_type": "checking"
}
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
The ID of the Vendor
The ID of the Vendor's Payment Method
OK
The response is of type object
.