Reject pending user
DELETE
/user/pending/{user_id}
const url = 'https://your-candig-domain/ingest/user/pending/example';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://your-candig-domain/ingest/user/pending/exampleReject a pending user for CanDIG access
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”user_id
required
string
The user ID to check. If “me”, return information about the requesting user
Responses
Section titled “Responses”Success
