Returns a list of signin objects sorted by signin ID descending.
643 matches
13 actions
API for the COVID-19 Tracking QR Code Signin Server.
13 actions
- Create a userPOSTv1.0.0
- Delete a signin recordDELETEv1.0.0
- Delete a team member's user recordDELETEv1.0.0
- Get signin infoGETv1.0.0
- Log outPOSTv1.0.0
- post_signinPOSTv1.0.0
- Retrieve the information associated with a signin recordGETv1.0.0
- Retrieve the information associated with a team member's user recordGETv1.0.0
- Retrieve the information associated with all team members' user recordsGETv1.0.0
- Update a signin recordPUTv1.0.0
- Used for changing your passwordPOSTv1.0.0
- Used for requesting a password reset codePOSTv1.0.0
- Used for resetting your password when you forgot itPOSTv1.0.0
Other/API for the COVID-19 Tracking QR Code Signin Server.
Get signin info
v1.0.0Input
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
{
"type": "object",
"properties": {
"less_than": {
"type": "integer"
},
"return_count": {
"type": "integer"
}
},
"additionalProperties": false
}Output
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
{
"type": "array",
"items": {
"type": "object",
"description": "Payload of signin object",
"required": [
"name",
"phone"
],
"properties": {
"dt": {
"type": "number",
"description": "The original scan time in number of seconds since 1/1/1970 (GMT)"
},
"email": {
"type": "string",
"description": "The person's email"
},
"id": {
"type": "integer",
"description": "The record id"
},
"name": {
"type": "string",
"description": "The person's name"
},
"phone": {
"type": "string",
"description": "The person's phone number"
}
}
}
}