postKyc
POST
/kyc
const url = 'https://web.exactly.app/api/kyc';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"redirectURI":"example","scope":"basic"}'};
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://web.exactly.app/api/kyc \ --header 'Content-Type: application/json' \ --data '{ "redirectURI": "example", "scope": "basic" }'Request Body
Section titled “Request Body”Media typeapplication/json
object
redirectURI
string
scope
string