Validate signup token
GET/invite/:token/validate
Check whether the provided public sign-up token exists, has not expired and is enabled
Request
Path Parameters
token stringrequired
Responses
- 200
- 400
This response has no body.
The request data does not match what we expect.
- application/json
- Schema
- Example (from schema)
Schema
id string
The ID of the error instance
Example:
9c40958a-daac-400e-98fb-3bb438567008
name string
The name of the error kind
Example:
ValidationError
message string
A description of what went wrong.
Example:
The request payload you provided doesn't conform to the schema. The .parameters property should be object. You sent [].
{
"id": "9c40958a-daac-400e-98fb-3bb438567008",
"name": "ValidationError",
"message": "The request payload you provided doesn't conform to the schema. The .parameters property should be object. You sent []."
}
Loading...