User invitation
data
OK
User delete
No Content
Update Ttl Invite
const response = await fetch('//api.client.nbcgate.tech/api/user/invite', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "email": "text", "language": "text", "name": "text", "surname": "text", "ttl": 0 }), }); const data = await response.json();
{ "companyName": "text", "email": "text", "language": "text", "link": "text", "name": "text", "owner": 0, "ownerForUserId": 0, "roleId": 0, "surname": "text", "ttl": 0, "user": 0 }
const response = await fetch('//api.client.nbcgate.tech/api/user/invite', { method: 'DELETE', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "user": 0 }), }); const data = await response.json();
{ "errors": [ { "code": 0, "field": "text", "message": "text" } ], "message": "text", "statusCode": 0 }
const response = await fetch('//api.client.nbcgate.tech/api/user/invite', { method: 'PUT', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "ttl": 0, "user": 0 }), }); const data = await response.json();