- OUTBACK APIs
- User
- Post
- Get Popular Categories Post
- Add Post
- Update Post
- Get Post
- Get My Post
- Detail Post By Id
- Get Trending Posts
- Get Most Viewed Post
- get specfic user post
- Record Fav_Unfav post
- Get Favt Post
- Record Views
- All Posts Views
- Add Comment
- Get Comments
- Get Collection List
- Get Post Collection
- Remove Collection
- Soft Delete Post
- Delete Post
- Update Sold Type
- report post
- update thumnail of posts
- ChatRoom/Messages
- Town Hall
- notfication
- Category
- Payments
- PAYMENTS APIS
Create User
POST
/usr-mgt/create
Request
Body Params application/json
name
string
required
email
string
required
password
string
required
agree
string
required
fcm_token
null
required
location
object
required
type
string
required
coordinates
array[number]
required
Example
{
"name":"test",
"email":"xyz@gmail.com",
"password":"123456",
"agree":"true",
"fcm_token":null,
"location": {
"type": "Point",
"coordinates": [40.7128, -74.0060]
}
}
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 'http://13.239.78.144:3000/api/v1/usr-mgt/create' \
--header 'Content-Type: application/json' \
--data-raw '{
"name":"test",
"email":"xyz@gmail.com",
"password":"123456",
"agree":"true",
"fcm_token":null,
"location": {
"type": "Point",
"coordinates": [40.7128, -74.0060]
}
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2024-11-15 11:08:17