- AutoReceiver
- Plasma
- Ledger
- Transfer
- Wallet
- Utilities
- Users
Authenticate an user
POST
/api/users/authenticate
Users
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
username
string
required
>= 1 characters
Example:
user
password
string
required
>= 1 characters
Example:
user
Example
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://walletapi.hypercore.one/api/users/authenticate' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
id
string <uuid>
required
username
string
required
>= 1 characters
token
string
required
>= 1 characters
Example
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"username": "string",
"token": "string"
}
🟠400Bad Request
🟠401Unauthorized
Modified at 2024-05-14 10:01:56