API
HQ APIVerification

Update verification request status

Updates the status of a verification request.

POST/v1/hq/verifications/{userId}

Authorization

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

Path Parameters

userId*string

The ID of the user whose verification to update

Query Parameters

select?array<string>
expand?array<string>

Request Body

application/json

status*string

The new verification status for updates

Value in"approved" | "rejected"
rejected_reason?string

Reason for rejection (required when status is 'rejected')

Response Body

application/json

curl -X POST "https://api.noona.is/v1/hq/verifications/string" \  -H "Content-Type: application/json" \  -d '{    "status": "approved"  }'
{
  "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
Empty