# Verify Contact Use this API to verify a contact. This API is only available to approved reseller accounts. Contact name.com support to request access. Endpoint: POST /core/v1/contacts/verify/{verificationId} Version: 1.8.2 Security: BasicAuth ## Path parameters: - `verificationId` (integer, required) The VerificationId required to verify a specific contact. Example: 98752463 ## Header parameters: - `X-Idempotency-Key` (string) A unique string (e.g., a UUID v4) to make the request idempotent. This key ensures that if the request is retried, the operation will not be performed multiple times. Subsequent requests with the same key will return the original result. Example: "083910ef-04e4-4bd1-a0bf-3737fe005ca8" ## Response 401 fields (application/json): - `message` (string, required) A human-readable message providing more details about the error Example: "Unauthorized" ## Response 403 fields (application/json): - `message` (string, required) A human-readable message providing more details about the error Example: "Permission denied" - `details` (string,null) Additional context or information about the error Example: "Failed authentication" ## Response 404 fields (application/json): - `message` (string, required) A human-readable message providing more details about the error Example: "Not Found" - `details` (string,null) Additional context or information about the error Example: "The requested domain does not exist." ## Response 409 fields (application/json): - `message` (string) Example: "Idempotency key has been reused for a different request." ## Response 429 fields (application/json): - `message` (string) A human-readable message providing more details about the error Example: "Rate Limit Exceeded" ## Response 500 fields (application/json): - `message` (string, required) A human-readable message providing more details about the error. Example: "Internal Server Error" - `details` (string,null) Additional context or information about the error. Example: "Something went wrong." ## Response 204 fields