HQ APIVerification
Create verification request
Creates a new verification request for the current user.
POST
/v1/hq/user/verificationAuthorization
BearerTokenAuth
AuthorizationBearer <token>
The Noona HQ API uses Bearer token for authentication.
Endpoints that return generic information that does not contain sensitive data do not require authentication. Endpoints that require authentication are specifically marked in the documentation.
Authorization: Bearer your-token
In: header
Query Parameters
select?array<string>
expand?array<string>
Request Body
application/json
file*string
URL to the verification document
certification_type*string
The type of certification
Value in
"cosmetology" | "hairdressing" | "massage_therapy" | "therapeutic_massage_therapy" | "podiatry" | "chiropractic"certification_level?string
The certification level
Value in
"apprentice" | "journeyman" | "master"Response Body
application/json
curl -X POST "https://api.noona.is/v1/hq/user/verification" \ -H "Content-Type: application/json" \ -d '{ "file": "string", "certification_type": "cosmetology" }'{
"status": "pending",
"file": "string",
"certification_type": "cosmetology",
"certification_level": "apprentice",
"submitted_at": "2019-08-24T14:15:22Z",
"approved_at": "2019-08-24T14:15:22Z",
"rejected_at": "2019-08-24T14:15:22Z",
"rejected_reason": "string"
}Empty
Empty
Empty
Empty