Returns information about a payment
GET
/payments/:id(.:format)
Example: returns a single payment
Request
curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
-XGET \
https://moneybird.com/api/v2/123/payments/449763677555394306.json?
data = {}
RestClient.get(
"https://moneybird.com/api/v2/123/payments/449763677555394306.json", data,
{ authorization: "Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" }
)
Response
Status: 200 OK
{
"id": "449763677555394306",
"administration_id": 123,
"invoice_type": "SalesInvoice",
"invoice_id": "449763677371893490",
"financial_account_id": "449763677544908542",
"user_id": 1,
"payment_transaction_id": null,
"transaction_identifier": null,
"price": "363.0",
"price_base": "363.0",
"payment_date": "2025-03-28",
"credit_invoice_id": null,
"financial_mutation_id": "449763677550151425",
"ledger_account_id": "449763677536519933",
"linked_payment_id": null,
"manual_payment_action": null,
"created_at": "2025-03-28T07:48:09.458Z",
"updated_at": "2025-03-28T07:48:09.458Z"
}
Example: returns 404 when payment does not exist
Request
curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
-XGET \
https://moneybird.com/api/v2/123/payments/34123123.json?
data = {}
RestClient.get(
"https://moneybird.com/api/v2/123/payments/34123123.json", data,
{ authorization: "Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" }
)
Response