Get KYC application status
GET
/kyc/application
const url = 'https://web.exactly.app/api/kyc/application';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://web.exactly.app/api/kyc/applicationGet the status of the KYC application
Responses
Section titled “Responses”KYC application status
Media typeapplication/json
object
code
required
string
legacy
required
string
status
required
string
reason
required
string
Example
{ "code": "ok", "legacy": "ok", "status": "approved", "reason": ""}Bad request