Update a signin record
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.
Update a signin record
v1.0.0Input
- 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
- 34
{
"type": "object",
"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"
},
"signinId": {
"type": "integer"
}
},
"required": [
"name",
"phone",
"signinId"
],
"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
{
"type": "object",
"description": "A team member user record",
"properties": {
"admin": {
"type": "boolean",
"description": "If the user has admin privileges then the user will be able to create password reset requests on behalf of other users, and will also be able to view and edit the data of other users.\n"
},
"email": {
"type": "string",
"description": "The user's email address"
},
"id": {
"type": "integer",
"description": "The id of the user's record"
},
"name": {
"type": "string",
"description": "The user's name"
},
"read_only": {
"type": "boolean",
"description": "Not used in this version of the API. For future use."
}
}
}