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/374313230591330123.json?
data = {}
RestClient.get(
"https://moneybird.com/api/v2/123/payments/374313230591330123.json", data,
{ authorization: "Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" }
)
Response
Status: 200 OK
{
"id": "374313230591330123",
"administration_id": 123,
"invoice_type": "SalesInvoice",
"invoice_id": "374313230420412223",
"financial_account_id": "374313230580844359",
"user_id": 1,
"payment_transaction_id": null,
"transaction_identifier": null,
"price": "363.0",
"price_base": "363.0",
"payment_date": "2022-12-16",
"credit_invoice_id": null,
"financial_mutation_id": "374313230587135818",
"ledger_account_id": "374313230572455750",
"linked_payment_id": null,
"manual_payment_action": null,
"created_at": "2022-12-16T12:15:36.025Z",
"updated_at": "2022-12-16T12:15:36.025Z"
}
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