mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-12 03:05:14 +00:00
58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
|
|
{
|
|
"create": [{
|
|
"title": "Create an invite",
|
|
"description": "Create an invite for a user for a group",
|
|
"request": {
|
|
"group_id": "mygroup",
|
|
"email": "john@doe.com"
|
|
},
|
|
"response": {
|
|
"invite": {
|
|
"id": "fb3a3552-3c7b-4a18-a1f8-08ab56940862",
|
|
"group_id": "mygroup",
|
|
"email": "john@doe.com",
|
|
"code": "86285587"
|
|
}
|
|
}
|
|
}],
|
|
"read": [{
|
|
"title": "Read an invite",
|
|
"description": "Read an invite by code",
|
|
"request": {
|
|
"code": "86285587"
|
|
},
|
|
"response": {
|
|
"invite": {
|
|
"id": "fb3a3552-3c7b-4a18-a1f8-08ab56940862",
|
|
"group_id": "mygroup",
|
|
"email": "john@doe.com",
|
|
"code": "86285587"
|
|
}
|
|
}
|
|
}],
|
|
"delete": [{
|
|
"title": "Delete an invite",
|
|
"description": "Delete an invite by id",
|
|
"request": {
|
|
"id": "fb3a3552-3c7b-4a18-a1f8-08ab56940862"
|
|
},
|
|
"response": {}
|
|
}],
|
|
"list": [{
|
|
"title": "List invites",
|
|
"description": "List invites for a group by id",
|
|
"request": {
|
|
"group_id": "mygroup"
|
|
},
|
|
"response": {
|
|
"invites": [{
|
|
"id": "fb3a3552-3c7b-4a18-a1f8-08ab56940862",
|
|
"group_id": "myawesomegroup",
|
|
"email": "john@doe.com",
|
|
"code": "86285587"
|
|
}]
|
|
}
|
|
}]
|
|
}
|