curl --request GET \
--url https://api.justpaid.io/api/v1/payment/invoice_payment \
--header 'Authorization: Bearer <token>'{
"items": [
{
"invoice": {
"amount": 123,
"invoice_number": "<string>",
"line_items": [
{
"name": "<string>",
"unit_price": 123,
"quantity": 123,
"amount": 123,
"currency": "<string>",
"description": "<string>",
"flat_fee": 123
}
],
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"currency": "USD",
"invoice_date": "2023-12-25",
"description": "<string>"
},
"total_amount": 123,
"customer_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"payment_status": "<string>",
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"reference_number": "<string>",
"payment_scheduled_date": "2023-11-07T05:31:56Z",
"payment_completed_date": "2023-11-07T05:31:56Z"
}
],
"count": 123
}curl --request GET \
--url https://api.justpaid.io/api/v1/payment/invoice_payment \
--header 'Authorization: Bearer <token>'{
"items": [
{
"invoice": {
"amount": 123,
"invoice_number": "<string>",
"line_items": [
{
"name": "<string>",
"unit_price": 123,
"quantity": 123,
"amount": 123,
"currency": "<string>",
"description": "<string>",
"flat_fee": 123
}
],
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"currency": "USD",
"invoice_date": "2023-12-25",
"description": "<string>"
},
"total_amount": 123,
"customer_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"payment_status": "<string>",
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"reference_number": "<string>",
"payment_scheduled_date": "2023-11-07T05:31:56Z",
"payment_completed_date": "2023-11-07T05:31:56Z"
}
],
"count": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
x >= 1x >= 0OK
Show child attributes
Show child attributes
The total amount due for the invoice
The invoice number
100Show child attributes
2553The description of the line item
Fixed flat fee added to the line item amount
3The date the invoice was created
The description of the invoice
Total amount of the payment
The JustPaid customer UUID
Reference number for the payment
50Date and time on which the payment is scheduled to be made
Date and time on which the payment is completed
Was this page helpful?