Updated Version 1.0 API (markdown)
+26
-2
@@ -8,8 +8,8 @@ This page contains API documentation regarding version 1.0 if the API. For the s
|
|||||||
* Album
|
* Album
|
||||||
* Genres
|
* Genres
|
||||||
* Year
|
* Year
|
||||||
* Cover art
|
* Cover art
|
||||||
|
|
||||||
## Authentication
|
## Authentication
|
||||||
### Retrieving token
|
### Retrieving token
|
||||||
**URI**: https://icarus-demo.com/api/v1/login
|
**URI**: https://icarus-demo.com/api/v1/login
|
||||||
@@ -32,6 +32,30 @@ This page contains API documentation regarding version 1.0 if the API. For the s
|
|||||||
"expiration":8000
|
"expiration":8000
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
### Register
|
||||||
|
**URI**: https://icarus-demo.com/api/v1/register
|
||||||
|
**Method**: Post
|
||||||
|
**Content type**: application/json
|
||||||
|
**Request body**:
|
||||||
|
```Json
|
||||||
|
{
|
||||||
|
"first_name":"Atman",
|
||||||
|
"last_name":"Heron",
|
||||||
|
"username":"ateron",
|
||||||
|
"nickname":"heron",
|
||||||
|
"password":"secret",
|
||||||
|
"email":"elysium@aaru.org",
|
||||||
|
"phone_number":"(789) 555-841"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
**Response body**:
|
||||||
|
```Json
|
||||||
|
{
|
||||||
|
"username":"ateron",
|
||||||
|
"successfully_registered":true,
|
||||||
|
"message":"User successfully registered"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
## Songs
|
## Songs
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user