POST
/
create-account
curl --request POST \
  --url http://dolphinflashcards.com/api/create-account \
  --header 'Content-Type: application/json' \
  --data '{
  "userID": "user1",
  "displayName": "sampleName"
}'
[
  200
]

Body

application/json
userID
string
required

A unique identifier to be assigned to the new user.

Example:

"user1"

displayName
string
required

A unique name or title for the new user.

Example:

"sampleName"

Response

200
application/json
OK. Returned when the request is successfully executed.
200
integer
Example:

200