Skip to main content
GET
/
coa
/
api
/
transaction-matches
cURL
curl --request GET \
  --url https://api.meetcampfire.com/coa/api/transaction-matches \
  --header 'Authorization: <api-key>'
[
  {
    "id": 123,
    "matched_object": "<string>",
    "app_label": "<string>",
    "model": "<string>",
    "object_id": 1073741823,
    "created_at": "2023-11-07T05:31:56Z",
    "reviewed_at": "2023-11-07T05:31:56Z",
    "status": "pending",
    "customer": 123,
    "transaction": 123,
    "content_type": 123,
    "reviewed_by": 123
  }
]

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Response

200 - application/json
id
integer
required
matched_object
string
required
app_label
string
required
model
string
required
object_id
integer
required
Required range: 0 <= x <= 2147483647
created_at
string<date-time>
required
customer
integer
required
transaction
integer
required
content_type
integer
required
reviewed_at
string<date-time> | null
status
enum<string>
  • pending - Pending
  • accepted - Accepted
  • rejected - Rejected
Available options:
pending,
accepted,
rejected
reviewed_by
integer | null
I