Start Wallet Registration
GET/wallet-registration/start
This is the endpoint the browser reaches with the first token so that the receiver can confirm their verification information through a webflow. Requires a valid SEP-24 token in the request.
Request
Query Parameters
token stringrequired
The SEP-24 token used for authentication
transaction_id stringrequired
The transaction id associated with the SEP-24 token
Responses
- 200
- 400
- 401
Token is valid and the webpage will be loaded normally.
- text/html
- Schema
Schema
string
Bad Request
- text/html
- Schema
- Example (from schema)
Schema
error string
Details about the error
extras
object
object
{
"error": "Invalid input",
"extras": {
"field_foo": "field_foo is required",
"field_bar": "field_bar needs to be an integer"
}
}
Unauthorized
- text/html
- application/json
- Schema
- Example (from schema)
Schema
error string
extras
object
status number
message string
{
"error": "Not authorized",
"extras": {
"status": 401,
"message": "Not authorized"
}
}
- Schema
- Example (from schema)
- Example
Schema
any
{
"error": "Not authorized",
"extras": {
"status": 401,
"message": "Not authorized"
}
}
{
"error": "Not authorized",
"extras": {
"status": 401,
"message": "Not authorized"
}
}
Loading...