TapRaise
  • Home
  • API Overview
    • Authentication
    • Pagination
    • Response composition
    • Marking as processed
  • API REFERENCE
    • Pledges
    • Persons
    • Calls
    • Transactions
    • Users
    • Shifts
    • Entity access
  • Get support
Powered by GitBook
On this page

Was this helpful?

  1. API Overview

Marking as processed

Last updated 10 months ago

Was this helpful?

When you have retrieved data, it is possible to mark it as processed via the entity-access endpoint. This will allow you to check if this data has already been retrieved in the past.

Doing so will make it easier for you to keep track of how much of your data you have already received through our API.

It will also allow you to easily link entities between your system and TapRaise by setting the consumerIdentifier.

post
Authorizations
Body
Responses
204
Entities were marked as processed. No response body.
400
Bad request. Response body shows what the problems are per entry that failed.
application/json
401
Service account not properly authenticated
403
Service account forbids executing this action
post
POST /api/v1/entity-access/actions/mark-processed HTTP/1.1
Host: 
Authorization: Bearer jwt
Content-Type: application/json
Accept: */*
Content-Length: 164

{
  "entries": [
    {
      "entityName": "person",
      "entityUuid": "82b431f0-f401-4afd-b6db-9d1d751232d9",
      "consumerIdentifier": "2993823372",
      "processedAt": "2023-05-01T00:00:00.000Z"
    }
  ]
}

No content