Get a list of Transactions related to the Client (as identified by the Bearer Token)
curl --request GET \
--url https://app.blueprinttitle.com/public/api/v4.0.0/transactions \
--header 'Accept: application/json' \
--header 'Authorization: Bearer 2|fa1CXjgluUt5ma9o01A79LQC9N1VkKQDopT6uVhr'
Response
{
"data": [
{
"name": "Weimann, Dibbert and Fadel - 123 Main St - Refinance",
"order_id": "ab6f797d-95f8-45be-a75f-bea181178579",
"estimated_closing_date": "2021-04-24",
"properties": [
"123 Main St, Nashville, TN 12345"
],
"progress": {
"commitment_uploaded": false,
"policy_issued": false
},
"status": "New",
"buyers": [],
"borrowers": [
"Jane Doe"
],
"sellers": []
},
{
"name": "Weimann, Dibbert and Fadel - 555 Elm Ave",
"order_id": "c28fadca-bcae-4701-b20d-7e5f6a98801d",
"estimated_closing_date": "2021-04-24",
"properties": [
"555 Elm Ave, Springfield, IL 90210"
],
"progress": {
"commitment_uploaded": false,
"policy_issued": false
},
"status": "New",
"buyers": [
"Jeff Smith"
],
"borrowers": [],
"sellers": [
"Jane Smith"
]
}
],
"links": {
"first": "http:\/\/localhost:4125\/public\/api\/v4.0.0\/transactions?page=1",
"last": "http:\/\/localhost:4125\/public\/api\/v4.0.0\/transactions?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"path": "http:\/\/localhost:4125\/public\/api\/v4.0.0\/transactions",
"per_page": 15,
"to": 2,
"total": 2
}
}