Request
Body Params application/vnd.api+json
{
"data": {
"type": "MobileUser",
"attributes": {
"name": "string",
"emailAddress": "string",
"profilePicture": "string",
"timeZone": "string",
"portalId": "string",
"attemptCount": 0,
"questionsAnswered": 0
},
"relationships": {}
}
}
Request samples
curl --location --request POST 'https://api.synap.ac/v3/mobile/users' \
--header 'Content-Type: application/vnd.api+json' \
--data-raw '{
"data": {
"type": "MobileUser",
"attributes": {
"name": "string",
"emailAddress": "string",
"profilePicture": "string",
"timeZone": "string",
"portalId": "string",
"attemptCount": 0,
"questionsAnswered": 0
},
"relationships": {}
}
}'
Responses
data
object (MobileUser)Â
optionalThe primary key for each resource.
{
"data": {
"id": "FID001",
"type": "MobileUser",
"attributes": {
"name": "string",
"emailAddress": "string",
"profilePicture": "string",
"timeZone": "string",
"portalId": "string",
"attemptCount": 0,
"questionsAnswered": 0
},
"relationships": {}
}
}
Modified at 2025-07-08 10:51:22