mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
71 lines
2.0 KiB
JSON
71 lines
2.0 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": {
|
|
"account": {
|
|
"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": {
|
|
"account": {
|
|
"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": {
|
|
"account": {
|
|
"id": "fdf34f34f34-f34f34-f43f43f34-f4f34f",
|
|
"username": "usrname-1",
|
|
"email": "joe@example.com",
|
|
"created": "1623677579",
|
|
"updated": "1623677579"
|
|
}
|
|
}
|
|
}],
|
|
"sendVerificationEmail": [{
|
|
"title": "Send verification email",
|
|
"request": {
|
|
"email": "joe@example.com",
|
|
"subject": "Email verification",
|
|
"redirectUrl": "https://m3o.com",
|
|
"failureRedirectUrl": "https://m3o.com/verification-failed",
|
|
"textContent": "Hi there,\n\nPlease verify your email by clicking this link: $micro_verification_link",
|
|
"fromName": "Awesome Dot Com"
|
|
},
|
|
"response": {
|
|
}
|
|
}]
|
|
}
|