コンテンツにスキップ

/v0/accounts/:name/resend_verify_email

POST
/v0/accounts/:name/resend_verify_email
curl --request POST \
--url http://localhost:3000/v0/accounts/:name/resend_verify_email \
--header 'Content-Type: application/json' \
--data '{ "captcha_token": "example" }'
name
required

Characters must be [A-Za-z0-9-.] The first and last characters must be [A-Za-z0-9-.]

string
>= 3 characters <= 64 characters
Example
example_man

Characters must be [A-Za-z0-9-.] The first and last characters must be [A-Za-z0-9-.]

Media type application/json
object
captcha_token
required

Captcha token (e.g. reCAPTCHA, Cloudflare Trunstile)

string
Example generated
{
"captcha_token": "example"
}

No Content

Bad Request

Media type application/json

Account email is already verified.

object
error
required

Account email address is already verified.

string
Allowed values: ACCOUNT_ALREADY_VERIFIED
Example
{
"error": "ACCOUNT_ALREADY_VERIFIED"
}

Forbidden

Media type application/json

You can not do this action.

object
error
required

You can’t do this action.

string
Allowed values: NO_PERMISSION
Example
{
"error": "NO_PERMISSION"
}

Not Found

Media type application/json

Account not found

object
error
required

Account not found.

string
Allowed values: ACCOUNT_NOT_FOUND
Example
{
"error": "ACCOUNT_NOT_FOUND"
}

Internal Server Error

Media type application/json
object
error
required

Internal server error.

string
Allowed values: INTERNAL_ERROR
Example
{
"error": "INTERNAL_ERROR"
}