APIHub
Back to Explore

API for the COVID-19 Tracking QR Code Signin Server.

This is the API for the COVID-19 Contact Tracing QRCode Signin Server

Open Data
apiKeyHeader
No HTTPS
CORS: Unknown
Visit official documentation

Latency

5001ms p95

Uptime

0.0% 30d

Playground

Verified

live

Endpoints

REST · JSON
POST

/changePassword

Used for changing your password

POST

/login

Log in to get an API token

POST

/logout

Log out

POST

/requestPasswordReset

Used for requesting a password reset code

POST

/signin

Create a new signin record

DELETE

/signin/{signinId}

Delete a signin record

  • signinId (path, required) — The ID of the signin record to be deleted.
GET

/signin/{signinId}

Retrieve the information associated with a signin record

  • signinId (path, required) — The ID of the signin record to be retrieved.
PUT

/signin/{signinId}

Update a signin record

  • signinId (path, required) — The ID of the signin record to be retrieved.
GET

/signins

Get signin info

  • less_than (query) — Return signins with IDs less than this value.
  • return_count (query) — Return this many objects
POST

/user

Create a user

DELETE

/user/{userId}

Delete a team member's user record

  • userId (path, required) — The ID of the user record to be deleted.
GET

/user/{userId}

Retrieve the information associated with a team member's user record

  • userId (path, required) — The ID of the user record to be retrieved.
GET

/users

Retrieve the information associated with all team members' user records

POST

/verifyPasswordChange

Used for resetting your password when you forgot it

14 endpoints auto-detected

Authentication

This API uses an API key, passed in the "token" header. No OAuth required.

curl -X POST \
  "http://c19qrserver.local/changePassword" \
  -H "token: YOUR_API_KEY"

c19qrserver.local · HTTPS only