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>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100",
  "results": [
    {
      "id": 123,
      "matched_object": "<string>",
      "app_label": "<string>",
      "model": "<string>",
      "drafts": "<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"

Query Parameters

limit
integer

Number of results to return per page.

offset
integer

The initial index from which to return the results.

Response

200 - application/json
count
integer
required
Example:

123

results
object[]
required
next
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=400&limit=100"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=200&limit=100"