Add pending user
POST
/user/pending/request
const url = 'https://example.com/user/pending/request';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/user/pending/requestAdd the user specified in the Bearer jwt to the pending users list
Responses
Section titled “ Responses ”Success