mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
66 lines
1.7 KiB
JSON
66 lines
1.7 KiB
JSON
{
|
|
"create": [{
|
|
"title": "Create an account",
|
|
"request": {
|
|
"id": "usrid-1",
|
|
"username": "usrname-1",
|
|
"email": "joe@example.com",
|
|
"password": "mySecretPass123"
|
|
},
|
|
"response": {
|
|
}
|
|
}],
|
|
"read": [{
|
|
"title": "Read an account by id",
|
|
"request": {
|
|
"id": "usrid-1"
|
|
},
|
|
"response": {
|
|
"accounts": [
|
|
{
|
|
"id": "fdf34f34f34-f34f34-f43f43f34-f4f34f",
|
|
"username": "usrname-1",
|
|
"email": "joe@example.com",
|
|
"created": "1623677579",
|
|
"updated": "1623677579"
|
|
}
|
|
]
|
|
|
|
}
|
|
},{
|
|
"title": "Read account by username or email",
|
|
"request": {
|
|
"username": "usrname-1"
|
|
},
|
|
"response": {
|
|
"accounts": [
|
|
{
|
|
"id": "fdf34f34f34-f34f34-f43f43f34-f4f34f",
|
|
"username": "usrname-1",
|
|
"email": "joe@example.com",
|
|
"created": "1623677579",
|
|
"updated": "1623677579"
|
|
}
|
|
]
|
|
|
|
}
|
|
},{
|
|
"title": "Read account by email",
|
|
"request": {
|
|
"email": "joe@example.com"
|
|
},
|
|
"response": {
|
|
"accounts": [
|
|
{
|
|
"id": "fdf34f34f34-f34f34-f43f43f34-f4f34f",
|
|
"username": "usrname-1",
|
|
"email": "joe@example.com",
|
|
"created": "1623677579",
|
|
"updated": "1623677579"
|
|
}
|
|
]
|
|
|
|
}
|
|
}]
|
|
}
|