naamee_laravel
POST
signup_social
{{host}}api/users/signup_social
BODY raw
{
"username":"apitest_social",
"email":"apitest_social@test.test",
"common_id":"test123",
"a_type": "F",
"deviceToken":"00000000000000000000000000000000000000000000000000"
}
Example Request
POST https://naamee.technoarray.com/api/users/signup_social
{
}
Example Response
401 - Unauthorized
{
"status": false,
"code": 0,
"message": {
"username": [
"The username field is required."
],
"email": [
"The email field is required."
],
"common_id": [
"The common id field is required."
],
"a_type": [
"The a type field is required."
],
"deviceToken": [
"The device token field is required."
]
}
}
POST
signup
{{host}}api/users/signup
BODY raw
{
"fullname": "api test",
"username":"apitest",
"email":"apitest@test.test",
"password":"test123",
"deviceType":"0",
"deviceToken":"00000000000000000000000000000000000000000000000000"
}
Example Request
POST https://naamee.technoarray.com/api/users/signup
{
}
Example Response
401 - Unauthorized
{
"status": false,
"code": 0,
"message": {
"fullname": [
"The fullname field is required."
],
"username": [
"The username field is required."
],
"email": [
"The email field is required."
],
"password": [
"The password field is required."
],
"deviceType": [
"The device type field is required."
],
"deviceToken": [
"The device token field is required."
]
}
}
POST
login
{{host}}api/users/login
HEADERS
None
BODY raw
{
"email":"apitest@test.test",
"password":"test123",
"deviceType":"0",
"deviceToken":"00000000000000000000000000000000000000000000000001"
}
Example Request
POST https://naamee.technoarray.com/api/users/login
{
"email":"apitest@test.test",
"password":"test123",
"deviceType":"0",
"deviceToken":"00000000000000000000000000000000000000000000000001"
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"message": "Logged in successfully",
"token": "9|tOcwF1ftnEMmZWvijshvlyveBFJ0XitoBwtZgtpY",
"data": {
"id": 184,
"fullname": "api test",
"email": "apitest@test.test",
"phone": null,
"username": "apitest",
"profile_pic": "",
"active": 1,
"a_type": "N",
"created": "2023-07-17T10:37:32.000000Z",
"modified": "2023-07-18T06:31:36.000000Z",
"facebook_id": null,
"google_id": null,
"apple_id": null,
"privatePost": 0,
"sharePost": 0,
"commentOnPost": null,
"viewYourliked": 0,
"PushNotification": 1,
"InAppNotification": 1,
"video_views": 0,
"viewfollowers": 0,
"viewfollowing": 0,
"description": null,
"coverPic": "",
"website": null,
"deviceType": "0",
"deviceToken": "00000000000000000000000000000000000000000000000001",
"deviceTokens": [
"00000000000000000000000000000000000000000000000000",
"00000000000000000000000000000000000000000000000001"
]
}
}
POST
login test
https://naamee.technoarray.com/api/users/login
HEADERS
None
BODY raw
{
"email":"apitest@test.test",
"password":"test123",
"deviceType":"0",
"deviceToken":"00000000000000000000000000000000000000000000000001"
}
Example Request
POST https://naamee.technoarray.com/api/users/login
{
"email":"apitest@test.test",
"password":"test123",
"deviceType":"0",
"deviceToken":"00000000000000000000000000000000000000000000000001"
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"message": "Logged in successfully",
"token": "9|tOcwF1ftnEMmZWvijshvlyveBFJ0XitoBwtZgtpY",
"data": {
"id": 184,
"fullname": "api test",
"email": "apitest@test.test",
"phone": null,
"username": "apitest",
"profile_pic": "",
"active": 1,
"a_type": "N",
"created": "2023-07-17T10:37:32.000000Z",
"modified": "2023-07-18T06:31:36.000000Z",
"facebook_id": null,
"google_id": null,
"apple_id": null,
"privatePost": 0,
"sharePost": 0,
"commentOnPost": null,
"viewYourliked": 0,
"PushNotification": 1,
"InAppNotification": 1,
"video_views": 0,
"viewfollowers": 0,
"viewfollowing": 0,
"description": null,
"coverPic": "",
"website": null,
"deviceType": "0",
"deviceToken": "00000000000000000000000000000000000000000000000001",
"deviceTokens": [
"00000000000000000000000000000000000000000000000000",
"00000000000000000000000000000000000000000000000001"
]
}
}
POST
social_login
{{host}}api/users/social_login
HEADERS
None
BODY raw
{
"email":"apitest@test.test",
"common_id":"test1235",
"a_type": "F",
"deviceType":"0",
"deviceToken":"00000000000000000000000000000000000000000000000001"
}
Example Request
POST https://naamee.technoarray.com/api/users/social_login
{
}
Example Response
401 - Unauthorized
{
"status": false,
"code": 0,
"message": {
"deviceType": [
"The device type field is required."
],
"deviceToken": [
"The device token field is required."
],
"common_id": [
"The common id field is required."
],
"a_type": [
"The a type field is required."
]
}
}
POST
logout
{{host}}api/users/logout
BODY raw
{
"uid":184,
"deviceToken":"00000000000000000000000000000000000000000000000001"
}
Example Request
POST https://naamee.technoarray.com/api/users/logout
{
"uid":184,
"deviceToken":"00000000000000000000000000000000000000000000000001"
}
Example Response
401 - Unauthorized
{
"message": "Unauthenticated."
}
POST
forgetpassword
{{host}}api/users/forgetPassword
BODY raw
{
"email":"apitest3@test.test"
}
Example Request
POST {{host}}api/users/forgetPassword
{
"email":"apitest3@test.test"
}
POST
getUserList
{{host}}api/users/getUserList
HEADERS
Accept
application/json
None
BODY raw
{
"uid": 90,
"page": 1
}
Example Request
POST https://naamee.technoarray.com/api/users/getUserList
{
"uid": 90,
"page": 1
}
Example Response
200 - OK
{
"UsersList": {
"current_page": 1,
"data": [
{
"id": 94,
"fullname": "Ruttð\u009f\u0092¥",
"email": "ruttruttv@gmail.com",
"phone": "9296696650",
"username": "rutttt",
"profile_pic": "1679594684_image.jpeg",
"privatePost": 1,
"following_status": 0,
"request_status": 0,
"they_follow_me": 1
},
{
"id": 95,
"fullname": "Rutt2",
"email": "rath555@gmail.com",
"phone": "",
"username": "ruttrutt",
"profile_pic": "",
"privatePost": 0,
"following_status": 1,
"request_status": "1",
"they_follow_me": 0
},
{
"id": 96,
"fullname": "rutt",
"email": "rath555@hotmail.com",
"phone": null,
"username": "rutt_3",
"profile_pic": "",
"privatePost": 1,
"following_status": 0,
"request_status": 0,
"they_follow_me": 0
},
{
"id": 97,
"fullname": "Aartið\u009f\u0098\u008eð\u009f\u0098\u008eð\u009f\u008c\u008dð\u009f\u0092«â\u009c\u0088ï¸\u008fð\u009f\u008c\u008e",
"email": "testingtechnics@gmail.com",
"phone": "984454545454",
"username": "aaru009",
"profile_pic": "1683279762_image.jpeg",
"privatePost": 1,
"following_status": 0,
"request_status": 0,
"they_follow_me": 1
},
{
"id": 100,
"fullname": "Aarti",
"email": "abc@gmail.vom",
"phone": null,
"username": "aari_123",
"profile_pic": "",
"privatePost": 0,
"following_status": 0,
"request_status": 0,
"they_follow_me": 0
},
{
"id": 101,
"fullname": "haidernuman1",
"email": "fornetflix0345@gmail.com",
"phone": "",
"username": "haider_2",
"profile_pic": "",
"privatePost": 0,
"following_status": 1,
"request_status": "1",
"they_follow_me": 1
},
{
"id": 105,
"fullname": "Aarti12354",
"email": "abc00@gmail.com",
"phone": null,
"username": "000000",
"profile_pic": "",
"privatePost": 1,
"following_status": 0,
"request_status": 0,
"they_follow_me": 0
},
{
"id": 108,
"fullname": "Test",
"email": "test001@gmail.com",
"phone": null,
"username": "test01",
"profile_pic": "",
"privatePost": 0,
"following_status": 1,
"request_status": "1",
"they_follow_me": 0
},
{
"id": 110,
"fullname": "Aarti Kumari",
"email": "aartikumari.chd009@gmail.com",
"phone": null,
"username": "aarti_kumari009",
"profile_pic": "img/mpCXuMcpI6NUFM502y4y9SXSILyC7CpMeW4UH19v.jpg",
"privatePost": 1,
"following_status": 0,
"request_status": 0,
"they_follow_me": 0
},
{
"id": 111,
"fullname": "adel",
"email": "haidernuman14@gmail.com",
"phone": "44",
"username": "adeel12",
"profile_pic": "img/6UxkT0b8g2vv8l9K2Ya6e8Q37YGS6ZsIuhXvI940.pdf",
"privatePost": 0,
"following_status": 0,
"request_status": 0,
"they_follow_me": 0
}
],
"first_page_url": "https://naamee.technoarray.com/api/users/getUserList?page=1",
"from": 1,
"last_page": 6,
"last_page_url": "https://naamee.technoarray.com/api/users/getUserList?page=6",
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/users/getUserList?page=1",
"label": "1",
"active": true
},
{
"url": "https://naamee.technoarray.com/api/users/getUserList?page=2",
"label": "2",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/users/getUserList?page=3",
"label": "3",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/users/getUserList?page=4",
"label": "4",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/users/getUserList?page=5",
"label": "5",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/users/getUserList?page=6",
"label": "6",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/users/getUserList?page=2",
"label": "Next »",
"active": false
}
],
"next_page_url": "https://naamee.technoarray.com/api/users/getUserList?page=2",
"path": "https://naamee.technoarray.com/api/users/getUserList",
"per_page": 10,
"prev_page_url": null,
"to": 10,
"total": 54
},
"method": "getUserList",
"message": "User Details",
"code": "1"
}
POST
user details
{{host}}api/users/userDetails
HEADERS
Accept
application/json
None
BODY raw
{
"uid":90,
"device":0,
"login_id":91
}
Example Request
POST https://naamee.technoarray.com/api/users/userDetails
{
"uid":90,
"device":0,
"login_id":91
}
Example Response
401 - Unauthorized
{
"message": "Unauthenticated."
}
POST
addFollowers
{{host}}api/users/addFollowers
HEADERS
Accept
application/json
None
BODY raw
{
"followuid":90
}
Example Request
POST https://naamee.technoarray.com/api/users/addFollowers
{
"followuid":90
}
Example Response
200 - OK
{
"code": 1,
"message": "Follow Request sent",
"is_private": 1
}
POST
unFollowUser
{{host}}api/users/unFollowUser
HEADERS
Accept
application/json
None
BODY raw
{
"followuid":90
}
Example Request
POST https://naamee.technoarray.com/api/users/unFollowUser
{
"followuid":90
}
Example Response
200 - OK
{
"status": false,
"code": 1,
"they_follow_me": 0,
"is_private": 1,
"message": "unfollow"
}
POST
cancelRequest
{{host}}api/users/cancelRequest
HEADERS
Accept
application/json
None
BODY raw
{
"followuid":90
}
Example Request
POST https://naamee.technoarray.com/api/users/cancelRequest
{
"followuid":90
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"is_private": 1,
"message": "Request Canceled"
}
POST
reset_password
{{host}}api/users/reset_password
HEADERS
Accept
application/json
None
BODY raw
{
"old_password" : "test@123",
"new_password" : "test123"
}
Example Request
POST https://naamee.technoarray.com/api/users/reset_password
{
"old_password" : "test@123",
"new_password" : "test123"
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"message": "Password Updated!"
}
POST
checkUsername
{{host}}api/users/checkUsername
HEADERS
Accept
application/json
None
BODY raw
{
"username" : "007"
}
Example Request
POST https://naamee.technoarray.com/api/users/checkUsername
{
"username" : "007"
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"message": "username is available"
}
POST
checkEmail
{{host}}api/users/checkEmail
HEADERS
Accept
application/json
None
BODY raw
{
"email" : "apitest@test.test"
}
Example Request
POST https://naamee.technoarray.com/api/users/checkEmail
{
"email" : "apitest@test.test"
}
Example Response
200 - OK
{
"status": false,
"code": 2,
"message": "Already taken"
}
POST
get_mention_userlist
{{host}}api/users/get_mention_userlist
HEADERS
Accept
application/json
None
BODY raw
{
"uid" : "90"
}
Example Request
POST https://naamee.technoarray.com/api/users/get_mention_userlist
{
"uid" : "90"
}
Example Response
200 - OK
{
"status": false,
"code": 1,
"result": [
{
"id": 94,
"username": "rutttt",
"profile_pic": "1679594684_image.jpeg",
"fullname": "Rutt💥"
},
{
"id": 97,
"username": "aaru009",
"profile_pic": "1683279762_image.jpeg",
"fullname": "Aarti😎😎🌍💫✈️🌎"
},
{
"id": 101,
"username": "haider_2",
"profile_pic": "",
"fullname": "haidernuman1"
},
{
"id": 144,
"username": "Angelpriya",
"profile_pic": "storage/app/img//sRcQlnevvPF6yAXA5PNNijQkxGUNFPOhZCw22t4M.jpg",
"fullname": "Angel Priya"
},
{
"id": 184,
"username": "apitest",
"profile_pic": "",
"fullname": "api test"
}
]
}
POST
getNotification
{{host}}api/users/getNotification
HEADERS
Accept
application/json
None
BODY raw
{
"uid" : "90"
}
Example Request
POST https://naamee.technoarray.com/api/users/getNotification
{
"uid" : "90"
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"notification": [
{
"notificationid": 847,
"user_id": 184,
"postid": null,
"notificationtype": "follow request",
"isread": 1,
"comment": "",
"modified": "2023-08-04T06:39:15.000000Z",
"createdon": "2023-08-03T07:40:04.000000Z",
"username": "apitest",
"fullname": "api test",
"profile_pic": "",
"following": 1,
"follower": 0,
"postImage": ""
},
{
"notificationid": 846,
"user_id": 184,
"postid": null,
"notificationtype": "follow request",
"isread": 1,
"comment": "",
"modified": "2023-08-04T06:39:15.000000Z",
"createdon": "2023-08-03T07:14:17.000000Z",
"username": "apitest",
"fullname": "api test",
"profile_pic": "",
"following": 1,
"follower": 0,
"postImage": ""
},
{
"notificationid": 845,
"user_id": 184,
"postid": null,
"notificationtype": "follow request",
"isread": 1,
"comment": "",
"modified": "2023-08-04T06:39:15.000000Z",
"createdon": "2023-08-03T07:11:14.000000Z",
"username": "apitest",
"fullname": "api test",
"profile_pic": "",
"following": 1,
"follower": 0,
"postImage": ""
},
{
"notificationid": 844,
"user_id": 184,
"postid": null,
"notificationtype": "follow request",
"isread": 1,
"comment": "",
"modified": "2023-08-04T06:39:15.000000Z",
"createdon": "2023-08-03T07:05:53.000000Z",
"username": "apitest",
"fullname": "api test",
"profile_pic": "",
"following": 1,
"follower": 0,
"postImage": ""
},
{
"notificationid": 843,
"user_id": 184,
"postid": null,
"notificationtype": "follow request",
"isread": 1,
"comment": "",
"modified": "2023-08-04T06:39:15.000000Z",
"createdon": "2023-08-03T06:27:11.000000Z",
"username": "apitest",
"fullname": "api test",
"profile_pic": "",
"following": 1,
"follower": 0,
"postImage": ""
},
{
"notificationid": 102,
"user_id": 96,
"postid": 59,
"notificationtype": "commented",
"isread": 1,
"comment": "Co Co Cola",
"modified": "2023-08-04T06:39:15.000000Z",
"createdon": "+055209-12-22T15:42:15.000000Z",
"username": "rutt_3",
"fullname": "rutt",
"profile_pic": "",
"following": 0,
"follower": 0,
"postImage": "1679906468_l.jpeg"
},
{
"notificationid": 27,
"user_id": 118,
"postid": null,
"notificationtype": "follow request",
"isread": 1,
"comment": "",
"modified": "2023-08-04T06:39:15.000000Z",
"createdon": "+055193-01-14T22:27:28.000000Z",
"username": "kwangwangg",
"fullname": "kk",
"profile_pic": "1685027652_image.jpeg",
"following": 0,
"follower": 0,
"postImage": ""
},
{
"notificationid": 26,
"user_id": 118,
"postid": null,
"notificationtype": "follow request",
"isread": 1,
"comment": "",
"modified": "2023-08-04T06:39:15.000000Z",
"createdon": "+055193-01-12T23:23:23.000000Z",
"username": "kwangwangg",
"fullname": "kk",
"profile_pic": "1685027652_image.jpeg",
"following": 0,
"follower": 0,
"postImage": ""
},
{
"notificationid": 25,
"user_id": 118,
"postid": null,
"notificationtype": "follow request",
"isread": 1,
"comment": "",
"modified": "2023-08-04T06:39:15.000000Z",
"createdon": "+055193-01-12T19:11:53.000000Z",
"username": "kwangwangg",
"fullname": "kk",
"profile_pic": "1685027652_image.jpeg",
"following": 0,
"follower": 0,
"postImage": ""
}
],
"request_list": {
"data": [
{
"id": 184,
"username": "apitest",
"fullname": "api test",
"profile_pic": ""
}
],
"code": 1
},
"readnotification": {
"code": 1
}
}
POST
getFollowingNotification
{{host}}api/users/getNotification
HEADERS
Accept
application/json
None
BODY raw
{
"uid" : "90"
}
Example Request
POST {{host}}api/users/getNotification
{
"uid" : "90"
}
POST
iamfollowing
{{host}}api/users/iamfollowing
HEADERS
Accept
application/json
None
BODY raw
{
"uid" : "90",
"ouid": "94"
}
Example Request
POST https://naamee.technoarray.com/api/users/iamfollowing
{
"uid" : "184",
"ouid": "94"
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"result": [
{
"follower": 94,
"username": "rutttt",
"fullname": "Rutt💥",
"profile_pic": "1679594684_image.jpeg",
"other_following_status": 0
},
{
"follower": 97,
"username": "aaru009",
"fullname": "Aarti😎😎🌍💫✈️🌎",
"profile_pic": "1683279762_image.jpeg",
"other_following_status": 1
},
{
"follower": 101,
"username": "haider_2",
"fullname": "haidernuman1",
"profile_pic": "",
"other_following_status": 0
},
{
"follower": 144,
"username": "Angelpriya",
"fullname": "Angel Priya",
"profile_pic": "storage/app/img//sRcQlnevvPF6yAXA5PNNijQkxGUNFPOhZCw22t4M.jpg",
"other_following_status": 0
},
{
"follower": 184,
"username": "apitest",
"fullname": "api test",
"profile_pic": "",
"other_following_status": 0
}
],
"message": "Follower List"
}
POST
myfollowers
{{host}}api/users/myfollowers
HEADERS
Accept
application/json
None
BODY raw
{
"uid" : "90",
"ouid": "94"
}
Example Request
POST https://naamee.technoarray.com/api/users/myfollowers
{
"uid" : "90",
"ouid": "94"
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"result": {
"current_page": 1,
"data": [
{
"follower": 95,
"username": "ruttrutt",
"fullname": "Rutt2",
"profile_pic": "",
"other_following_status": 1
},
{
"follower": 101,
"username": "haider_2",
"fullname": "haidernuman1",
"profile_pic": "",
"other_following_status": 0
},
{
"follower": 108,
"username": "test01",
"fullname": "Test",
"profile_pic": "",
"other_following_status": 1
}
],
"first_page_url": "https://naamee.technoarray.com/api/users/myfollowers?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "https://naamee.technoarray.com/api/users/myfollowers?page=1",
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/users/myfollowers?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"next_page_url": null,
"path": "https://naamee.technoarray.com/api/users/myfollowers",
"per_page": 10,
"prev_page_url": null,
"to": 3,
"total": 3
},
"message": "Follower List"
}
POST
userDetailsByusername
{{host}}api/users/userDetailsByusername
HEADERS
Accept
application/json
None
BODY raw
{
"username": "hey__arjun",
"uid" : "184",
"device": "ads"
}
Example Request
POST https://naamee.technoarray.com/api/users/userDetailsByusername
{
"username": "hey__arjun",
"uid" : "184",
"device": "ads"
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"userid": 90
}
POST
like_post_person_list
{{host}}api/users/like_post_person_list
HEADERS
Accept
application/json
None
BODY raw
{
"uid" : "90",
"pid": "31"
}
Example Request
POST https://naamee.technoarray.com/api/users/like_post_person_list
{
"uid" : "184",
"pid": "31"
}
Example Response
200 - OK
{
"status": true,
"result": [
{
"following_status": 0,
"follower_status": 0,
"follower": 95,
"fullname": "Rutt2",
"username": "ruttrutt",
"profile_pic": ""
},
{
"following_status": 0,
"follower_status": 0,
"follower": 118,
"fullname": "kk",
"username": "kwangwangg",
"profile_pic": "1685027652_image.jpeg"
},
{
"following_status": 0,
"follower_status": 0,
"follower": 96,
"fullname": "rutt",
"username": "rutt_3",
"profile_pic": ""
},
{
"following_status": 0,
"follower_status": 0,
"follower": 94,
"fullname": "Rutt💥",
"username": "rutttt",
"profile_pic": "1679594684_image.jpeg"
},
{
"following_status": 0,
"follower_status": 0,
"follower": 97,
"fullname": "Aarti😎😎🌍💫✈️🌎",
"username": "aaru009",
"profile_pic": "1683279762_image.jpeg"
}
],
"message": "like_post_person_list",
"code": "1"
}
POST
repeatpost_person_list
{{host}}api/users/repeatpost_person_list
HEADERS
Accept
application/json
None
BODY raw
{
"uid" : "90",
"pid": "81"
}
Example Request
POST https://naamee.technoarray.com/api/users/repeatpost_person_list
{
"uid" : "90",
"pid": "81"
}
Example Response
200 - OK
{
"status": true,
"result": [
{
"following_status": 1,
"follower_status": 0,
"follower": 95,
"fullname": "Rutt2",
"username": "ruttrutt",
"profile_pic": ""
},
{
"following_status": 0,
"follower_status": 0,
"follower": 96,
"fullname": "rutt",
"username": "rutt_3",
"profile_pic": ""
}
],
"message": "like_post_person_list",
"code": "1"
}
POST
accept_request
{{host}}api/users/accept_request
HEADERS
Accept
application/json
None
BODY raw
{
"uid" : "184",
"followbyuid": "90"
}
Example Request
POST https://naamee.technoarray.com/api/users/accept_request
{
"uid" : "184",
"followbyuid": "90"
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"message": "Request Accepted",
"request_list": {}
}
POST
request_dec
{{host}}api/users/request_dec
HEADERS
Accept
application/json
None
BODY raw
{
"uid" : "184",
"followbyuid": "90"
}
Example Request
POST https://naamee.technoarray.com/api/users/request_dec
{
"uid" : "184",
"followbyuid": "90"
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"message": "Request Declined",
"request_list": {}
}
POST
editProfile
{{host}}api/users/editProfile
HEADERS
Accept
application/json
None
Content-Type
multipart/form-data
None
BODY formdata
delete_profile_image
delete
None
id
184
None
email
apitest@test.test
None
username
apitest2
None
fullname
api test 2
None
profile_image
None
None
phone
9999999999
None
cover_image
None
None
delete_cover_image
delete
None
Example Request
POST {{host}}api/users/editProfile
Example Response
200 - OK
{
"status": true,
"code": 1,
"result": {
"id": 184,
"fullname": "api test 2",
"email": "apitest@test.test",
"phone": "9999999999",
"username": "apitest2",
"profile_pic": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"active": 1,
"a_type": "F",
"created": "2023-07-17T10:37:32.000000Z",
"modified": "2023-08-08T04:51:46.000000Z",
"facebook_id": null,
"google_id": null,
"apple_id": null,
"privatePost": 0,
"sharePost": 0,
"commentOnPost": null,
"viewYourliked": 0,
"PushNotification": 1,
"InAppNotification": 1,
"video_views": 0,
"viewfollowers": 0,
"viewfollowing": 0,
"description": null,
"coverPic": "img/mzTCBS61gUC0Ghw5iKilPOgQGNS5hKLVzoE8Jopu.jpg",
"website": null,
"deviceType": 0,
"deviceToken": "00000000000000000000000000000000000000000000000001",
"deviceTokens": "[\"00000000000000000000000000000000000000000000000000\",\"00000000000000000000000000000000000000000000000001\"]"
}
}
POST
Allfeeds
{{host}}api/post/allfeeds
HEADERS
Accept
application/json
None
BODY raw
{
"uid" : "184",
"device": "00000000000000000000000000000000000000000000000001"
}
Example Request
POST {{host}}api/post/allfeeds
{
"uid" : "184",
"device": "00000000000000000000000000000000000000000000000001"
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"method": "allfedd",
"message": "Feeds",
"allfeeds": {
"current_page": 1,
"data": [
{
"postid": 850,
"caption": "@rutt @aaru009 @haider_2 @Angelpriya @michel_09 @Angelpriya @michel_09 @rutt @aaru009 @haider_2 @Angelpriya @michel_09 @aaru009 @rutt",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1685434263_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "94,97,101,144,145",
"user_id": 90,
"owner_id": 90,
"created": "1685434263555",
"modifiedon": "2023-05-30 08:11:03",
"isactive": 1,
"sharePostid": null,
"name": "Arjun Gongely",
"coverPic": "1683716197_age.jpeg",
"userName": "hey__arjun",
"userImage": "1683716197_image.jpeg",
"privatePost": 1,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"totalShares": 1,
"isShare": 0,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": "",
"likeprivate": false,
"videoprivate": false
},
{
"postid": 861,
"caption": "@rutt @aaru009 @haider_2 @Angelpriya @michel_09 @Angelpriya @michel_09 @rutt @aaru009 @haider_2 @Angelpriya @michel_09 @aaru009 @rutt",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1685434263_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "94,97,101,144,145",
"user_id": 90,
"owner_id": 90,
"created": "1685434263555",
"modifiedon": "2023-05-30 08:11:03",
"isactive": 1,
"sharePostid": 850,
"name": "Arjun Gongely",
"coverPic": "1683716197_age.jpeg",
"userName": "hey__arjun",
"userImage": "1683716197_image.jpeg",
"privatePost": 1,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 90,
"sharedusername": "hey__arjun",
"shareduserfullname": "Arjun Gongely",
"likeprivate": false,
"videoprivate": false
},
{
"postid": 822,
"caption": "@aaru009",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1685000975_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "97",
"user_id": 90,
"owner_id": 90,
"created": "1685000975074",
"modifiedon": "2023-05-25 07:49:35",
"isactive": 1,
"sharePostid": null,
"name": "Arjun Gongely",
"coverPic": "1683716197_age.jpeg",
"userName": "hey__arjun",
"userImage": "1683716197_image.jpeg",
"privatePost": 1,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": "",
"likeprivate": false,
"videoprivate": false
},
{
"postid": 817,
"caption": "@aari009longusernameincaption",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1684924283_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "97",
"user_id": 90,
"owner_id": 90,
"created": "1684924283830",
"modifiedon": "2023-05-24 10:31:23",
"isactive": 1,
"sharePostid": null,
"name": "Arjun Gongely",
"coverPic": "1683716197_age.jpeg",
"userName": "hey__arjun",
"userImage": "1683716197_image.jpeg",
"privatePost": 1,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": "",
"likeprivate": false,
"videoprivate": false
},
{
"postid": 816,
"caption": "@aari009thisisaverylongusername123 @haider_2 @michel_09",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1684922198_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "97,101,145",
"user_id": 90,
"owner_id": 90,
"created": "1684922198577",
"modifiedon": "2023-05-24 09:56:38",
"isactive": 1,
"sharePostid": null,
"name": "Arjun Gongely",
"coverPic": "1683716197_age.jpeg",
"userName": "hey__arjun",
"userImage": "1683716197_image.jpeg",
"privatePost": 1,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": "",
"likeprivate": false,
"videoprivate": false
},
{
"postid": 121,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1680176855_cd274f3eb00444c2b6c3b94b.jpg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"user_id": 90,
"owner_id": 90,
"created": "1680176855064",
"modifiedon": "2023-05-10 10:51:01",
"isactive": 1,
"sharePostid": null,
"name": "Arjun Gongely",
"coverPic": "1683716197_age.jpeg",
"userName": "hey__arjun",
"userImage": "1683716197_image.jpeg",
"privatePost": 1,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 1,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": "",
"likeprivate": false,
"videoprivate": false
},
{
"postid": 157,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1680266869_.mov",
"videoImage": "",
"postImage_height": 0,
"postImage_width": 0,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"user_id": 90,
"owner_id": 90,
"created": "1680266869536",
"modifiedon": "2023-03-31 12:47:49",
"isactive": 1,
"sharePostid": null,
"name": "Arjun Gongely",
"coverPic": "1683716197_age.jpeg",
"userName": "hey__arjun",
"userImage": "1683716197_image.jpeg",
"privatePost": 1,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 0,
"totalViews": 1,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": "",
"likeprivate": false,
"videoprivate": false
},
{
"postid": 59,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1679906468_-e8f5-4e28-a3fd-ff6c619581c5.mp4",
"videoImage": "1679906468_l.jpeg",
"postImage_height": 0,
"postImage_width": 0,
"address": "",
"lat": "",
"lon": "",
"user_id": 90,
"owner_id": 90,
"created": "1679906468327",
"modifiedon": "2023-03-29 12:02:22",
"isactive": 1,
"sharePostid": null,
"name": "Arjun Gongely",
"coverPic": "1683716197_age.jpeg",
"userName": "hey__arjun",
"userImage": "1683716197_image.jpeg",
"privatePost": 1,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 0,
"totalViews": 0,
"totalComments": 3,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": "",
"likeprivate": false,
"videoprivate": false
},
{
"postid": 95,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1680089776__Final1680085691.mp4",
"videoImage": "1680089801_l.jpeg",
"postImage_height": 0,
"postImage_width": 0,
"address": "",
"lat": "",
"lon": "",
"user_id": 90,
"owner_id": 90,
"created": "1680089776771",
"modifiedon": "2023-03-29 11:36:16",
"isactive": 1,
"sharePostid": null,
"name": "Arjun Gongely",
"coverPic": "1683716197_age.jpeg",
"userName": "hey__arjun",
"userImage": "1683716197_image.jpeg",
"privatePost": 1,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 0,
"totalViews": 1,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": "",
"likeprivate": false,
"videoprivate": false
},
{
"postid": 93,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1680089173_.mov",
"videoImage": "1680089202_l.jpeg",
"postImage_height": 0,
"postImage_width": 0,
"address": "",
"lat": "",
"lon": "",
"user_id": 90,
"owner_id": 90,
"created": "1680089173861",
"modifiedon": "2023-03-29 11:26:13",
"isactive": 1,
"sharePostid": null,
"name": "Arjun Gongely",
"coverPic": "1683716197_age.jpeg",
"userName": "hey__arjun",
"userImage": "1683716197_image.jpeg",
"privatePost": 1,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 0,
"totalViews": 1,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": "",
"likeprivate": false,
"videoprivate": false
}
],
"first_page_url": "https://naamee.technoarray.com/api/post/allfeeds?page=1",
"from": 1,
"last_page": 3,
"last_page_url": "https://naamee.technoarray.com/api/post/allfeeds?page=3",
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/allfeeds?page=1",
"label": "1",
"active": true
},
{
"url": "https://naamee.technoarray.com/api/post/allfeeds?page=2",
"label": "2",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/allfeeds?page=3",
"label": "3",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/allfeeds?page=2",
"label": "Next »",
"active": false
}
],
"next_page_url": "https://naamee.technoarray.com/api/post/allfeeds?page=2",
"path": "https://naamee.technoarray.com/api/post/allfeeds",
"per_page": 10,
"prev_page_url": null,
"to": 10,
"total": 22
},
"notification": {
"otherUserid": "184",
"total_reports": 0,
"total_comment": 0,
"total_liked": 0
}
}
POST
getcountNotification
{{host}}api/post/getcountNotification
HEADERS
Accept
application/json
None
BODY raw
{
"uid" : "90"
}
Example Request
POST {{host}}api/post/getcountNotification
{
}
Example Response
401 - Unauthorized
{
"status": false,
"code": 0,
"message": {
"uid": [
"The uid field is required."
]
}
}
POST
likePost
{{host}}api/post/likePost
HEADERS
Accept
application/json
None
BODY raw
{
"uid" : "184",
"postid": "850"
}
Example Request
POST {{host}}api/post/likePost
{
}
Example Response
401 - Unauthorized
{
"status": false,
"code": 0,
"message": {
"uid": [
"The uid field is required."
],
"postid": [
"The postid field is required."
]
}
}
POST
viewPost
{{host}}api/post/viewPost
HEADERS
Accept
application/json
None
BODY raw
{
"uid" : "184",
"postid": "850"
}
Example Request
POST {{host}}api/post/viewPost
{
}
Example Response
401 - Unauthorized
{
"status": false,
"code": 0,
"message": {
"uid": [
"The uid field is required."
],
"postid": [
"The postid field is required."
]
}
}
POST
unLikePost
{{host}}api/post/unLikePost
HEADERS
Accept
application/json
None
BODY raw
{
"uid" : "184",
"postid": "850"
}
Example Request
POST {{host}}api/post/unLikePost
{
}
Example Response
401 - Unauthorized
{
"status": false,
"code": 0,
"message": {
"uid": [
"The uid field is required."
],
"postid": [
"The postid field is required."
]
}
}
POST
readnotification
{{host}}api/post/readnotification
HEADERS
Accept
application/json
None
BODY raw
{
"uid" : "184"
}
Example Request
POST {{host}}api/post/readnotification
{
}
Example Response
401 - Unauthorized
{
"status": false,
"code": 0,
"message": {
"uid": [
"The uid field is required."
]
}
}
POST
trendi
{{host}}api/post/trendi
HEADERS
Accept
application/json
None
cache-control
no-cache
None
BODY raw
{
"uid" : "95",
"device": "00000000000000000000000000000000000000000000000001"
}
Example Request
POST {{host}}api/post/trendi
{
"uid" : "184",
"device": "00000000000000000000000000000000000000000000000001"
}
Example Response
200 - OK
{
"status": true,
"hashTagDetail": {
"current_page": 1,
"data": [
{
"postid": 585,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "+055324-08-13T04:22:15.000000Z",
"modifiedon": "2023-05-10 08:57:22",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 0,
"follower": 0
},
{
"postid": 586,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "+055324-08-13T12:02:48.000000Z",
"modifiedon": "2023-05-10 08:57:50",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 0,
"follower": 0
},
{
"postid": 599,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 1,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "1683784835_age_2.mp4",
"videoImage": "1683784901_pit-copy-500x500.jpg",
"postImage_height": 0,
"postImage_width": 0,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "+055327-01-07T09:40:57.000000Z",
"modifiedon": "2023-05-11 06:03:35",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 1,
"totalViews": 3,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 0,
"follower": 0
},
{
"postid": 510,
"caption": "",
"mood": "#dhdh #djd #dhdb #dh #dbdb",
"wearing": "#sbdh #shdv #dusk #shdh",
"playing": "#xbd #jdbd #dbdn",
"type": 0,
"listening": "#xbsj #djs #shdh #dhdb",
"watching": "#sndn #djbd #cbdb",
"onlyMe": 0,
"location": "#absh #shsb #dhs",
"postImage": "1683311940_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "",
"sharePostid": "",
"created": "+055312-01-13T02:01:55.000000Z",
"modifiedon": "2023-05-17 05:47:40",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 1,
"totalViews": 0,
"totalComments": 1,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 0,
"follower": 0
}
],
"first_page_url": "https://naamee.technoarray.com/api/post/trendi?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "https://naamee.technoarray.com/api/post/trendi?page=1",
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/trendi?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"next_page_url": null,
"path": "https://naamee.technoarray.com/api/post/trendi",
"per_page": 10,
"prev_page_url": null,
"to": 4,
"total": 4
},
"method": "trendi",
"message": "Trending Details",
"code": "1"
}
POST
popularPost
{{host}}api/post/popularPost
HEADERS
Accept
application/json
None
cache-control
no-cache
None
BODY raw
{
"uid" : "95",
"device": "00000000000000000000000000000000000000000000000001"
}
Example Request
POST {{host}}api/post/popularPost
{
"uid" : "95",
"device": "00000000000000000000000000000000000000000000000001"
}
Example Response
200 - OK
{
"status": true,
"hashTagDetail": {
"current_page": 1,
"data": [
{
"postid": 31,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1679660958_c3f04f338d4839e35cf5f77f.mp4",
"videoImage": "1679660958_l.jpeg",
"postImage_height": 0,
"postImage_width": 0,
"address": "",
"lat": "",
"lon": "94",
"sharePostid": "",
"created": "+055196-05-03T08:27:25.000000Z",
"modifiedon": "2023-05-10 07:02:21",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 5,
"totalViews": 88,
"totalComments": 2,
"isLike": 1,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 792,
"caption": "@rutt ð\u009fª\u0090",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "#woodside",
"postImage": "1684462602_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "94",
"sharePostid": "",
"created": "+055348-06-29T22:20:24.000000Z",
"modifiedon": "2023-05-24 05:14:03",
"user_id": 95,
"name": "Rutt2",
"coverPic": "",
"userName": "ruttrutt",
"userImage": "",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 4,
"totalViews": 0,
"totalComments": 1,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 0,
"follower": 0
},
{
"postid": 308,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1682054003_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "94",
"sharePostid": "",
"created": "+055272-03-02T15:12:09.000000Z",
"modifiedon": "2023-04-27 08:22:26",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 3,
"totalViews": 0,
"totalComments": 0,
"isLike": 1,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 317,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1682271026_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "94",
"sharePostid": "",
"created": "+055279-01-17T11:22:55.000000Z",
"modifiedon": "2023-05-02 11:02:55",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 3,
"totalViews": 0,
"totalComments": 1,
"isLike": 1,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 169,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1680332992_.mov",
"videoImage": "1680333004_l.jpeg",
"postImage_height": 0,
"postImage_width": 0,
"address": "",
"lat": "",
"lon": "",
"sharePostid": "",
"created": "+055217-08-19T12:39:16.000000Z",
"modifiedon": "2023-05-19 04:33:36",
"user_id": 95,
"name": "Rutt2",
"coverPic": "",
"userName": "ruttrutt",
"userImage": "",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 3,
"totalViews": 11,
"totalComments": 1,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 0,
"follower": 0
},
{
"postid": 3,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1679592390_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "",
"sharePostid": "",
"created": "+055194-03-01T17:39:29.000000Z",
"modifiedon": "2023-03-27 05:21:39",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 2,
"totalViews": 0,
"totalComments": 4,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 807,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1684676180_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "",
"sharePostid": "",
"created": "+055355-04-06T21:47:05.000000Z",
"modifiedon": "2023-05-23 10:40:05",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 2,
"totalViews": 0,
"totalComments": 1,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 306,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1682053879_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "",
"sharePostid": "",
"created": "+055272-03-01T04:51:09.000000Z",
"modifiedon": "2023-04-26 11:33:05",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 2,
"totalViews": 0,
"totalComments": 2,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 309,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1682054091_.mov",
"videoImage": "1682054096_l.jpeg",
"postImage_height": 0,
"postImage_width": 0,
"address": "",
"lat": "",
"lon": "",
"sharePostid": "",
"created": "+055272-03-03T15:37:02.000000Z",
"modifiedon": "2023-05-01 19:50:13",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 2,
"totalViews": 5,
"totalComments": 0,
"isLike": 1,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 164,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1680273746_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "",
"sharePostid": "",
"created": "+055215-10-03T19:16:09.000000Z",
"modifiedon": "2023-04-01 07:01:58",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 2,
"totalViews": 0,
"totalComments": 2,
"isLike": 1,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 167,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1680332578_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "",
"sharePostid": "",
"created": "+055217-08-14T17:41:29.000000Z",
"modifiedon": "2023-04-03 12:38:48",
"user_id": 95,
"name": "Rutt2",
"coverPic": "",
"userName": "ruttrutt",
"userImage": "",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 2,
"totalViews": 0,
"totalComments": 2,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 0,
"follower": 0
},
{
"postid": 212,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1680708009_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "94,95",
"sharePostid": "",
"created": "+055229-07-07T23:51:22.000000Z",
"modifiedon": "2023-04-12 20:09:27",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 2,
"totalViews": 0,
"totalComments": 1,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 234,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1680804091_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "",
"sharePostid": "",
"created": "+055232-07-24T01:20:23.000000Z",
"modifiedon": "2023-04-08 09:24:57",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 2,
"totalViews": 0,
"totalComments": 2,
"isLike": 1,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 254,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1681153403_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "94",
"sharePostid": "",
"created": "+055243-08-19T00:31:00.000000Z",
"modifiedon": "2023-05-04 06:58:14",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 2,
"totalViews": 0,
"totalComments": 4,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 265,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1681488612_.mov",
"videoImage": "1681488616_l.jpeg",
"postImage_height": 0,
"postImage_width": 0,
"address": "",
"lat": "",
"lon": "",
"sharePostid": "",
"created": "+055254-04-02T18:05:03.000000Z",
"modifiedon": "2023-04-16 05:48:32",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 1,
"totalViews": 2,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 266,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1681573312_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "",
"sharePostid": "",
"created": "+055256-12-08T02:02:15.000000Z",
"modifiedon": "2023-04-18 11:58:56",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 1,
"totalViews": 0,
"totalComments": 1,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 292,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1681891217_.jpg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "+055267-01-04T12:56:36.000000Z",
"modifiedon": "2023-04-19 08:19:30",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 1,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 806,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1684676119_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "",
"sharePostid": "",
"created": "+055355-04-06T04:51:59.000000Z",
"modifiedon": "2023-05-23 10:40:08",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 1,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 41,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1679673205_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "94",
"sharePostid": "",
"created": "+055196-09-22T02:25:44.000000Z",
"modifiedon": "2023-03-27 05:21:36",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 1,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 825,
"caption": "@rutt ð\u009f¥¹",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1685027593_ge.jpeg",
"videoImage": "",
"postImage_height": 1,
"postImage_width": 1,
"address": "",
"lat": "",
"lon": "94",
"sharePostid": "",
"created": "+055366-05-26T04:26:03.000000Z",
"modifiedon": "2023-05-25 19:33:26",
"user_id": 118,
"name": "kk",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 1,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
}
],
"first_page_url": "https://naamee.technoarray.com/api/post/popularPost?page=1",
"from": 1,
"last_page": 2,
"last_page_url": "https://naamee.technoarray.com/api/post/popularPost?page=2",
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/popularPost?page=1",
"label": "1",
"active": true
},
{
"url": "https://naamee.technoarray.com/api/post/popularPost?page=2",
"label": "2",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/popularPost?page=2",
"label": "Next »",
"active": false
}
],
"next_page_url": "https://naamee.technoarray.com/api/post/popularPost?page=2",
"path": "https://naamee.technoarray.com/api/post/popularPost",
"per_page": 20,
"prev_page_url": null,
"to": 20,
"total": 36
},
"method": "trendi",
"message": "Trending Details",
"code": "1"
}
POST
videos
{{host}}api/post/videos
HEADERS
Accept
application/json
None
cache-control
no-cache
None
BODY raw
{
"uid" : "188", //userid
"device": "000"
}
Example Request
POST {{host}}api/post/popularPost
Example Response
401 - Unauthorized
{
"status": false,
"code": 0,
"message": {
"uid": [
"The uid field is required."
],
"device": [
"The device field is required."
]
}
}
POST
addPost
{{host}}api/post/addPost
HEADERS
Accept
application/json
None
cache-control
no-cache
None
content
multipart/form-data
None
BODY formdata
uid
90
None
onlyMe
0
None
lat
564
None
lon
45.255
None
caption
TEST704
None
address
Panchkula
None
image_width
1000
None
image_height
1000
None
mentionId
94
None
type
1
None
mood
#😄🐢😂
None
wearing
#🥳🫠🥳
None
listening
#🤐🤐🤐#asdasd
None
playing
#😡😡😡😡####asdasd
None
watching
#😯😯😯#asdasdasd#fsdfdsf
None
where
#😵💫😵💫😵💫
None
hashTag
😄🐢😂,🥳🫠🥳,🤐🤐🤐,😡😡😡😡,😯😯😯,😵💫😵💫😵💫,😵💫😵💫😵💫😯,,
None
image
None
None
thumbnail
None
None
thumb_image
None
None
Example Request
POST {{host}}api/post/addPost
Example Response
200 - OK
{
"status": true,
"code": 1,
"message": "Post added Successfully"
}
POST
deletePost
{{host}}api/post/deletePost
HEADERS
Accept
application/json
None
cache-control
no-cache
None
BODY raw
{
"postid":"882"
}
Example Request
POST {{host}}api/post/deletePost
{
"postid":"870"
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"result": "Post Deleted Successfully"
}
POST
totalLikePostByUser
{{host}}api/post/totalLikePostByUser
HEADERS
Accept
application/json
None
cache-control
no-cache
None
BODY raw
{
"uid": 95
}
Example Request
POST {{host}}api/post/totalLikePostByUser?
{
"uid": 95
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"postDetails": {
"current_page": 1,
"data": [
{
"postid": 859,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1685579807_0000chr2subc77u39a03rgd0.mp4",
"videoImage": "1685579879_l.jpeg",
"postImage_height": 500,
"postImage_width": 300,
"address": "",
"lat": "",
"lon": "",
"user_id": 94,
"owner_id": 94,
"created": "+055383-11-24T13:11:36.000000Z",
"modifiedon": "2023-06-01T03:53:50.000000Z",
"sharePostid": "",
"coverPic": "1683275760_age.jpeg",
"userName": "rutttt",
"userImage": "1679594684_image.jpeg",
"totalLikes": 1,
"totalViews": 3,
"totalComments": 1,
"isLike": 1,
"totalShares": 1,
"isShare": 1,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": ""
},
{
"postid": 789,
"caption": "Way 2nd home in two weeks\n#testing_rt\n@ruttrutt @rutt_3 ð\u009f\u0093\u008d\n\nhttps://youtu.be/J1oEWiUsKgU ð\u009f\u0093\u008d",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "#nyc",
"postImage": "1684431773_.mov",
"videoImage": "1684431778_l.jpeg",
"postImage_height": 500,
"postImage_width": 300,
"address": "",
"lat": "",
"lon": "95,96",
"user_id": 94,
"owner_id": 94,
"created": "+055347-07-09T02:52:49.000000Z",
"modifiedon": "2023-05-19T05:48:13.000000Z",
"sharePostid": "",
"coverPic": "1683275760_age.jpeg",
"userName": "rutttt",
"userImage": "1679594684_image.jpeg",
"totalLikes": 1,
"totalViews": 9,
"totalComments": 2,
"isLike": 1,
"totalShares": 1,
"isShare": 1,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": ""
},
{
"postid": 784,
"caption": "DOWNTOWN \n@ruttrutt @rutt_3 ð\u009f¥·ð\u009f\u008f»\nhttps://youtu.be/OG7gR9tAHko\n#testing_rt",
"mood": "#morning",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "#downtownbrooklyn",
"postImage": "1684326913_.mov",
"videoImage": "1684326916_l.jpeg",
"postImage_height": 500,
"postImage_width": 300,
"address": "",
"lat": "",
"lon": "95,96",
"user_id": 94,
"owner_id": 94,
"created": "+055344-03-12T10:57:57.000000Z",
"modifiedon": "2023-05-23T13:38:49.000000Z",
"sharePostid": "",
"coverPic": "1683275760_age.jpeg",
"userName": "rutttt",
"userImage": "1679594684_image.jpeg",
"totalLikes": 4,
"totalViews": 6,
"totalComments": 1,
"isLike": 1,
"totalShares": 3,
"isShare": 1,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": ""
},
{
"postid": 780,
"caption": "Repeat post issue",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1684303480_ge.jpeg",
"videoImage": "",
"postImage_height": 1096,
"postImage_width": 1000,
"address": "",
"lat": "",
"lon": "",
"user_id": 94,
"owner_id": 94,
"created": "+055343-06-15T05:56:56.000000Z",
"modifiedon": "2023-05-19T02:17:06.000000Z",
"sharePostid": "",
"coverPic": "1683275760_age.jpeg",
"userName": "rutttt",
"userImage": "1679594684_image.jpeg",
"totalLikes": 1,
"totalViews": 0,
"totalComments": 0,
"isLike": 1,
"totalShares": 0,
"isShare": 0,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": ""
},
{
"postid": 321,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1682421137_.mov",
"videoImage": "1682421139_l.jpeg",
"postImage_height": 500,
"postImage_width": 300,
"address": "",
"lat": "",
"lon": "118",
"user_id": 94,
"owner_id": 94,
"created": "+055283-10-20T20:42:59.000000Z",
"modifiedon": "2023-05-01T19:50:00.000000Z",
"sharePostid": "",
"coverPic": "1683275760_age.jpeg",
"userName": "rutttt",
"userImage": "1679594684_image.jpeg",
"totalLikes": 4,
"totalViews": 12,
"totalComments": 2,
"isLike": 1,
"totalShares": 3,
"isShare": 1,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": ""
},
{
"postid": 317,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1682271026_ge.jpeg",
"videoImage": "",
"postImage_height": 693,
"postImage_width": 520,
"address": "",
"lat": "",
"lon": "94",
"user_id": 118,
"owner_id": 118,
"created": "+055279-01-17T11:22:55.000000Z",
"modifiedon": "2023-05-02T11:02:55.000000Z",
"sharePostid": "",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"totalLikes": 3,
"totalViews": 0,
"totalComments": 1,
"isLike": 1,
"totalShares": 2,
"isShare": 1,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": ""
},
{
"postid": 309,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1682054091_.mov",
"videoImage": "1682054096_l.jpeg",
"postImage_height": 500,
"postImage_width": 300,
"address": "",
"lat": "",
"lon": "",
"user_id": 118,
"owner_id": 118,
"created": "+055272-03-03T15:37:02.000000Z",
"modifiedon": "2023-05-01T19:50:13.000000Z",
"sharePostid": "",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"totalLikes": 2,
"totalViews": 5,
"totalComments": 0,
"isLike": 1,
"totalShares": 2,
"isShare": 0,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": ""
},
{
"postid": 308,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1682054003_ge.jpeg",
"videoImage": "",
"postImage_height": 770,
"postImage_width": 520,
"address": "",
"lat": "",
"lon": "94",
"user_id": 118,
"owner_id": 118,
"created": "+055272-03-02T15:12:09.000000Z",
"modifiedon": "2023-04-27T08:22:26.000000Z",
"sharePostid": "",
"coverPic": "1679592309_age.jpeg",
"userName": "kwangwangg",
"userImage": "1685027652_image.jpeg",
"totalLikes": 3,
"totalViews": 0,
"totalComments": 0,
"isLike": 1,
"totalShares": 2,
"isShare": 1,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": ""
},
{
"postid": 280,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1681813410_.mov",
"videoImage": "1681813421_l.jpeg",
"postImage_height": 500,
"postImage_width": 300,
"address": "",
"lat": "",
"lon": "",
"user_id": 94,
"owner_id": 94,
"created": "+055264-07-17T23:50:19.000000Z",
"modifiedon": "2023-04-18T16:05:24.000000Z",
"sharePostid": "",
"coverPic": "1683275760_age.jpeg",
"userName": "rutttt",
"userImage": "1679594684_image.jpeg",
"totalLikes": 3,
"totalViews": 3,
"totalComments": 3,
"isLike": 1,
"totalShares": 3,
"isShare": 1,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": ""
},
{
"postid": 237,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1680851908_ge.jpeg",
"videoImage": "",
"postImage_height": 693,
"postImage_width": 520,
"address": "",
"lat": "",
"lon": "118,94",
"user_id": 95,
"owner_id": 95,
"created": "+055234-01-28T11:57:29.000000Z",
"modifiedon": "2023-04-08T06:51:13.000000Z",
"sharePostid": "",
"coverPic": "",
"userName": "ruttrutt",
"userImage": "",
"totalLikes": 1,
"totalViews": 0,
"totalComments": 0,
"isLike": 1,
"totalShares": 0,
"isShare": 0,
"ownerid": 0,
"sharedusername": "",
"shareduserfullname": ""
}
],
"first_page_url": "https://naamee.technoarray.com/api/post/totalLikePostByUser?page=1",
"from": 1,
"last_page": 2,
"last_page_url": "https://naamee.technoarray.com/api/post/totalLikePostByUser?page=2",
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/totalLikePostByUser?page=1",
"label": "1",
"active": true
},
{
"url": "https://naamee.technoarray.com/api/post/totalLikePostByUser?page=2",
"label": "2",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/totalLikePostByUser?page=2",
"label": "Next »",
"active": false
}
],
"next_page_url": "https://naamee.technoarray.com/api/post/totalLikePostByUser?page=2",
"path": "https://naamee.technoarray.com/api/post/totalLikePostByUser",
"per_page": 10,
"prev_page_url": null,
"to": 10,
"total": 16
}
}
POST
totalrePostByUser
{{host}}api/post/totalrePostByUser
HEADERS
Accept
application/json
None
cache-control
no-cache
None
content
application/json
None
BODY raw
{
"uid": 95
}
Example Request
POST {{host}}api/post/totalrePostByUser
{
"uid": 95
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"postDetails": {
"current_page": 1,
"data": [
{
"postid": 860,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1685579807_0000chr2subc77u39a03rgd0.mp4",
"videoImage": "1685579879_l.jpeg",
"postImage_height": 500,
"postImage_width": 300,
"address": "",
"lat": "",
"lon": "",
"user_id": 95,
"owner_id": 94,
"created": "+055384-04-09T00:15:48.000000Z",
"modifiedon": "2023-06-01T03:53:17.000000Z",
"sharePostid": 859,
"coverPic": "",
"userName": "ruttrutt",
"userImage": "",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 94,
"sharedusername": "rutttt",
"shareduserfullname": "Rutt?"
},
{
"postid": 793,
"caption": "DOWNTOWN \n@ruttrutt @rutt_3 ð\u009f¥·ð\u009f\u008f»\nhttps://youtu.be/OG7gR9tAHko\n#testing_rt",
"mood": "#morning",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "#downtownbrooklyn",
"postImage": "1684326913_.mov",
"videoImage": "1684326916_l.jpeg",
"postImage_height": 500,
"postImage_width": 300,
"address": "",
"lat": "",
"lon": "95,96",
"user_id": 95,
"owner_id": 94,
"created": "+055348-06-30T09:10:48.000000Z",
"modifiedon": "2023-05-19T02:17:21.000000Z",
"sharePostid": 784,
"coverPic": "",
"userName": "ruttrutt",
"userImage": "",
"totalLikes": 0,
"totalViews": 2,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 94,
"sharedusername": "rutttt",
"shareduserfullname": "Rutt?"
},
{
"postid": 791,
"caption": "Way 2nd home in two weeks\n#testing_rt\n@ruttrutt @rutt_3 ð\u009f\u0093\u008d\n\nhttps://youtu.be/J1oEWiUsKgU ð\u009f\u0093\u008d",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "#nyc",
"postImage": "1684431773_.mov",
"videoImage": "1684431778_l.jpeg",
"postImage_height": 500,
"postImage_width": 300,
"address": "",
"lat": "",
"lon": "95,96",
"user_id": 95,
"owner_id": 94,
"created": "+055348-04-06T07:16:51.000000Z",
"modifiedon": "2023-05-19T00:14:50.000000Z",
"sharePostid": 789,
"coverPic": "",
"userName": "ruttrutt",
"userImage": "",
"totalLikes": 0,
"totalViews": 1,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 94,
"sharedusername": "rutttt",
"shareduserfullname": "Rutt?"
},
{
"postid": 326,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1682054003_ge.jpeg",
"videoImage": "",
"postImage_height": 770,
"postImage_width": 520,
"address": "",
"lat": "",
"lon": "94",
"user_id": 95,
"owner_id": 118,
"created": "+055285-07-22T18:36:05.000000Z",
"modifiedon": "2023-04-26T02:35:11.000000Z",
"sharePostid": 308,
"coverPic": "",
"userName": "ruttrutt",
"userImage": "",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 118,
"sharedusername": "kwangwangg",
"shareduserfullname": "kk"
},
{
"postid": 325,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1682271026_ge.jpeg",
"videoImage": "",
"postImage_height": 693,
"postImage_width": 520,
"address": "",
"lat": "",
"lon": "94",
"user_id": 95,
"owner_id": 118,
"created": "+055285-07-22T10:48:02.000000Z",
"modifiedon": "2023-04-26T02:34:43.000000Z",
"sharePostid": 317,
"coverPic": "",
"userName": "ruttrutt",
"userImage": "",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 118,
"sharedusername": "kwangwangg",
"shareduserfullname": "kk"
},
{
"postid": 323,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1682421137_.mov",
"videoImage": "1682421139_l.jpeg",
"postImage_height": 500,
"postImage_width": 300,
"address": "",
"lat": "",
"lon": "118",
"user_id": 95,
"owner_id": 94,
"created": "+055284-07-24T14:45:36.000000Z",
"modifiedon": "2023-04-25T17:52:14.000000Z",
"sharePostid": 321,
"coverPic": "",
"userName": "ruttrutt",
"userImage": "",
"totalLikes": 0,
"totalViews": 3,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 94,
"sharedusername": "rutttt",
"shareduserfullname": "Rutt?"
},
{
"postid": 284,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1681813410_.mov",
"videoImage": "1681813421_l.jpeg",
"postImage_height": 500,
"postImage_width": 300,
"address": "",
"lat": "",
"lon": "",
"user_id": 95,
"owner_id": 94,
"created": "+055264-12-18T07:50:53.000000Z",
"modifiedon": "2023-04-18T14:04:18.000000Z",
"sharePostid": 280,
"coverPic": "",
"userName": "ruttrutt",
"userImage": "",
"totalLikes": 0,
"totalViews": 1,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 94,
"sharedusername": "rutttt",
"shareduserfullname": "Rutt?"
},
{
"postid": 240,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 1,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1680598797_.mov",
"videoImage": "1680598801_l.jpeg",
"postImage_height": 500,
"postImage_width": 300,
"address": "",
"lat": "",
"lon": "118",
"user_id": 95,
"owner_id": 94,
"created": "+055236-10-08T09:51:22.000000Z",
"modifiedon": "2023-04-08T06:55:18.000000Z",
"sharePostid": 201,
"coverPic": "",
"userName": "ruttrutt",
"userImage": "",
"totalLikes": 0,
"totalViews": 1,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 94,
"sharedusername": "rutttt",
"shareduserfullname": "Rutt?"
},
{
"postid": 238,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1680426606_ge.jpeg",
"videoImage": "",
"postImage_height": 693,
"postImage_width": 520,
"address": "",
"lat": "",
"lon": "118",
"user_id": 95,
"owner_id": 94,
"created": "+055234-01-29T12:55:48.000000Z",
"modifiedon": "2023-04-07T07:19:58.000000Z",
"sharePostid": 173,
"coverPic": "",
"userName": "ruttrutt",
"userImage": "",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 94,
"sharedusername": "rutttt",
"shareduserfullname": "Rutt?"
},
{
"postid": 236,
"caption": "",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1680804091_ge.jpeg",
"videoImage": "",
"postImage_height": 683,
"postImage_width": 520,
"address": "",
"lat": "",
"lon": "",
"user_id": 95,
"owner_id": 118,
"created": "+055234-01-26T12:38:47.000000Z",
"modifiedon": "2023-04-07T07:15:38.000000Z",
"sharePostid": 234,
"coverPic": "",
"userName": "ruttrutt",
"userImage": "",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 118,
"sharedusername": "kwangwangg",
"shareduserfullname": "kk"
}
],
"first_page_url": "https://naamee.technoarray.com/api/post/totalrePostByUser?page=1",
"from": 1,
"last_page": 2,
"last_page_url": "https://naamee.technoarray.com/api/post/totalrePostByUser?page=2",
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/totalrePostByUser?page=1",
"label": "1",
"active": true
},
{
"url": "https://naamee.technoarray.com/api/post/totalrePostByUser?page=2",
"label": "2",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/totalrePostByUser?page=2",
"label": "Next »",
"active": false
}
],
"next_page_url": "https://naamee.technoarray.com/api/post/totalrePostByUser?page=2",
"path": "https://naamee.technoarray.com/api/post/totalrePostByUser",
"per_page": 10,
"prev_page_url": null,
"to": 10,
"total": 14
}
}
POST
editpost
{{host}}api/post/editpost
HEADERS
Accept
application/json
None
cache-control
no-cache
None
BODY formdata
onlyMe
0
None
lat
564
None
lon
45.255
None
caption
TEST704 updated
None
address
Panchkula
None
mentionId
94
None
mood
#😄🐢😂
None
wearing
#🥳🫠🥳
None
listening
#🤐🤐🤐#asdasd
None
playing
#😡😡😡😡####asdasd
None
watching
#😯😯😯#asdasdasd#fsdfdsf
None
where
#😵💫😵💫😵💫
None
hashTag
🥳🫠🥳,🤐🤐🤐,😡😡😡😡,😯😯😯,😵💫😵💫😵💫,😵💫😵💫😵💫😯,,
None
pid
914
None
Example Request
POST {{host}}api/post/editpost
Example Response
200 - OK
{
"status": true,
"code": 1,
"result": {
"id": 881,
"sharePostid": "",
"orignal": "img/rp9GcJxDSynLvMmbQv5Hy3p9dOI93aHaqmdSJHV0.mp4",
"video_thumb": null,
"type": 1,
"orignal_width": 1000,
"orignal_height": 1000,
"user_id": 184,
"owner_id": 184,
"views": null,
"caption": "TEST704 updated",
"mention": null,
"address": "Panchkula",
"onlyMe": "0",
"share": "Y",
"mood": "#😄🐢😂",
"listening": "#🤐🤐🤐#asdasd",
"wearing": "#🥳🫠🥳",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"playing": "#😡😡😡😡####asdasd",
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"lat": "564",
"lon": "45.255",
"created": "2023-08-17T09:47:37.000000Z",
"modifiedon": "2023-08-18T10:26:18.000000Z",
"isactive": 1
}
}
POST
reportpost
{{host}}api/post/reportPost
HEADERS
Accept
application/json
None
cache-control
no-cache
None
content
multipart/form-data
None
BODY raw
{
"postid": 3
}
Example Request
POST {{host}}api/post/reportPost
{
"postid": 3
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"message": "Post Reported successfully and email sent to admin!",
"method": "reportPost"
}
POST
reportComment
{{host}}api/post/reportComment
HEADERS
Accept
application/json
None
cache-control
no-cache
None
BODY raw
{
"postid": 3,
"commentid":1
}
Example Request
POST {{host}}api/post/editpost
Example Response
200 - OK
{
"status": true,
"code": 1,
"result": {
"id": 881,
"sharePostid": "",
"orignal": "img/rp9GcJxDSynLvMmbQv5Hy3p9dOI93aHaqmdSJHV0.mp4",
"video_thumb": null,
"type": 1,
"orignal_width": 1000,
"orignal_height": 1000,
"user_id": 184,
"owner_id": 184,
"views": null,
"caption": "TEST704 updated",
"mention": null,
"address": "Panchkula",
"onlyMe": "0",
"share": "Y",
"mood": "#😄🐢😂",
"listening": "#🤐🤐🤐#asdasd",
"wearing": "#🥳🫠🥳",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"playing": "#😡😡😡😡####asdasd",
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"lat": "564",
"lon": "45.255",
"created": "2023-08-17T09:47:37.000000Z",
"modifiedon": "2023-08-18T10:26:18.000000Z",
"isactive": 1
}
}
POST
getComments
{{host}}api/post/getComments
HEADERS
Accept
application/json
None
cache-control
no-cache
None
BODY raw
{
"postid": 231
}
Example Request
POST {{host}}api/post/getComments
{
"postid": 232
}
Example Response
200 - OK
{
"status": false,
"comments": {
"current_page": 1,
"data": [],
"first_page_url": "https://naamee.technoarray.com/api/post/getComments?page=1",
"from": null,
"last_page": 1,
"last_page_url": "https://naamee.technoarray.com/api/post/getComments?page=1",
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/getComments?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"next_page_url": null,
"path": "https://naamee.technoarray.com/api/post/getComments",
"per_page": 10,
"prev_page_url": null,
"to": null,
"total": 0
},
"message": "No Comment found",
"code": "2"
}
POST
addComments
{{host}}api/post/addComments
HEADERS
Accept
application/json
None
cache-control
no-cache
None
BODY raw
{
"postid": 231,
"comment": "hello 95",
"mention": "95"
}
Example Request
POST {{host}}api/post/addComments
{
"postid": 231,
"comment": "hello 95",
"mention": "95"
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"result": "Comment added Successfully"
}
POST
deletecomments
{{host}}api/post/deletecomments
HEADERS
Accept
application/json
None
cache-control
no-cache
None
BODY raw
{
"cid": 172
}
Example Request
POST {{host}}api/post/deletecomments
{
"cid": 172
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"result": "Comment Deleted Successfully"
}
POST
hasTagPost
{{host}}api/post/hasTagPost
HEADERS
Accept
application/json
None
cache-control
no-cache
None
content
application/json
None
BODY raw
{
"uid": 184,
"hastag":"#😡😡😡😡####asdasd",
"device": "hello"
}
Example Request
POST {{host}}api/post/hasTagPost
{
"uid": 184,
"hastag":"#😡😡😡😡####asdasd",
"device": "hello"
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"post": {
"current_page": 1,
"data": [
{
"postid": 911,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/t1JFmk0Rsoc6djnS9Zu4jyPXKPDZVtRtMNYbaqME.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-09-09T06:44:39.000000Z",
"modifiedon": "2023-09-09T06:44:39.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "😄🐢😂",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 911,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/t1JFmk0Rsoc6djnS9Zu4jyPXKPDZVtRtMNYbaqME.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-09-09T06:44:39.000000Z",
"modifiedon": "2023-09-09T06:44:39.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "🥳🫠🥳",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 911,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/t1JFmk0Rsoc6djnS9Zu4jyPXKPDZVtRtMNYbaqME.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-09-09T06:44:39.000000Z",
"modifiedon": "2023-09-09T06:44:39.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "🤐🤐🤐",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 911,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/t1JFmk0Rsoc6djnS9Zu4jyPXKPDZVtRtMNYbaqME.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-09-09T06:44:39.000000Z",
"modifiedon": "2023-09-09T06:44:39.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "😡😡😡😡",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 911,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/t1JFmk0Rsoc6djnS9Zu4jyPXKPDZVtRtMNYbaqME.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-09-09T06:44:39.000000Z",
"modifiedon": "2023-09-09T06:44:39.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "😯😯😯",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 911,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/t1JFmk0Rsoc6djnS9Zu4jyPXKPDZVtRtMNYbaqME.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-09-09T06:44:39.000000Z",
"modifiedon": "2023-09-09T06:44:39.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "😵\u200d💫😵\u200d💫😵\u200d💫",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 911,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/t1JFmk0Rsoc6djnS9Zu4jyPXKPDZVtRtMNYbaqME.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-09-09T06:44:39.000000Z",
"modifiedon": "2023-09-09T06:44:39.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "😵\u200d💫😵\u200d💫😵\u200d💫😯",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 911,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/t1JFmk0Rsoc6djnS9Zu4jyPXKPDZVtRtMNYbaqME.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-09-09T06:44:39.000000Z",
"modifiedon": "2023-09-09T06:44:39.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 911,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/t1JFmk0Rsoc6djnS9Zu4jyPXKPDZVtRtMNYbaqME.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-09-09T06:44:39.000000Z",
"modifiedon": "2023-09-09T06:44:39.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 0,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 890,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/76HzCy12vuLnDjL5ObKHK5cuwhktsyZHKxc6ew2Q.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-08-29T12:17:25.000000Z",
"modifiedon": "2023-08-29T12:17:25.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "😄🐢😂",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 890,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/76HzCy12vuLnDjL5ObKHK5cuwhktsyZHKxc6ew2Q.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-08-29T12:17:25.000000Z",
"modifiedon": "2023-08-29T12:17:25.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "🥳🫠🥳",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 890,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/76HzCy12vuLnDjL5ObKHK5cuwhktsyZHKxc6ew2Q.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-08-29T12:17:25.000000Z",
"modifiedon": "2023-08-29T12:17:25.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "🤐🤐🤐",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 890,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/76HzCy12vuLnDjL5ObKHK5cuwhktsyZHKxc6ew2Q.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-08-29T12:17:25.000000Z",
"modifiedon": "2023-08-29T12:17:25.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "😡😡😡😡",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 890,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/76HzCy12vuLnDjL5ObKHK5cuwhktsyZHKxc6ew2Q.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-08-29T12:17:25.000000Z",
"modifiedon": "2023-08-29T12:17:25.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "😯😯😯",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 890,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/76HzCy12vuLnDjL5ObKHK5cuwhktsyZHKxc6ew2Q.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-08-29T12:17:25.000000Z",
"modifiedon": "2023-08-29T12:17:25.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "😵\u200d💫😵\u200d💫😵\u200d💫",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 890,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/76HzCy12vuLnDjL5ObKHK5cuwhktsyZHKxc6ew2Q.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-08-29T12:17:25.000000Z",
"modifiedon": "2023-08-29T12:17:25.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "😵\u200d💫😵\u200d💫😵\u200d💫😯",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 890,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/76HzCy12vuLnDjL5ObKHK5cuwhktsyZHKxc6ew2Q.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-08-29T12:17:25.000000Z",
"modifiedon": "2023-08-29T12:17:25.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 890,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/76HzCy12vuLnDjL5ObKHK5cuwhktsyZHKxc6ew2Q.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-08-29T12:17:25.000000Z",
"modifiedon": "2023-08-29T12:17:25.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 889,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/57E8gJZy6XlEinMGIzB2SiRemt9tegZfyfrtR4DS.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-08-29T12:16:46.000000Z",
"modifiedon": "2023-08-29T12:16:46.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "😄🐢😂",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
},
{
"postid": 889,
"caption": "TEST704",
"mood": "#😄🐢😂",
"wearing": "#🥳🫠🥳",
"playing": "#😡😡😡😡####asdasd",
"type": 0,
"listening": "#🤐🤐🤐#asdasd",
"watching": "#ð\u009f\u0098¯ð\u009f\u0098¯ð\u009f\u0098¯#asdasdasd#fsdfdsf",
"onlyMe": 0,
"location": "#😵\u200d💫😵\u200d💫😵\u200d💫",
"postImage": "img/57E8gJZy6XlEinMGIzB2SiRemt9tegZfyfrtR4DS.jpg",
"videoImage": null,
"postImage_height": 1000,
"postImage_width": 1000,
"address": "Panchkula",
"lat": "564",
"lon": "45.255",
"sharePostid": "",
"created": "2023-08-29T12:16:46.000000Z",
"modifiedon": "2023-08-29T12:16:46.000000Z",
"user_id": 184,
"name": "api test 2",
"coverPic": "img/ynnwNN4Pk9pqWGl0YPwmgsThakalM9dW7WpDCKbo.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"hashTagName": "🥳🫠🥳",
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"isShare": 1,
"likeprivate": false,
"videoprivate": false,
"following": 1,
"follower": "1"
}
],
"first_page_url": "https://naamee.technoarray.com/api/post/hasTagPost?page=1",
"from": 1,
"last_page": 9,
"last_page_url": "https://naamee.technoarray.com/api/post/hasTagPost?page=9",
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/hasTagPost?page=1",
"label": "1",
"active": true
},
{
"url": "https://naamee.technoarray.com/api/post/hasTagPost?page=2",
"label": "2",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/hasTagPost?page=3",
"label": "3",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/hasTagPost?page=4",
"label": "4",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/hasTagPost?page=5",
"label": "5",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/hasTagPost?page=6",
"label": "6",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/hasTagPost?page=7",
"label": "7",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/hasTagPost?page=8",
"label": "8",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/hasTagPost?page=9",
"label": "9",
"active": false
},
{
"url": "https://naamee.technoarray.com/api/post/hasTagPost?page=2",
"label": "Next »",
"active": false
}
],
"next_page_url": "https://naamee.technoarray.com/api/post/hasTagPost?page=2",
"path": "https://naamee.technoarray.com/api/post/hasTagPost",
"per_page": 20,
"prev_page_url": null,
"to": 20,
"total": 176
},
"result": "Has tag post Details"
}
POST
sharePost
{{host}}api/post/sharePost
HEADERS
Accept
application/json
None
cache-control
no-cache
None
BODY raw
{
"uid":184,
"postid": 914
}
Example Request
POST {{host}}api/post/sharePost
{
"uid":184,
"postid": 866
}
Example Response
200 - OK
{
"status": true,
"method": "sharePost",
"message": "Post successfully shared",
"sharePostid": 910,
"code": "1"
}
POST
postDetails
{{host}}api/post/postDetails
HEADERS
Accept
application/json
None
cache-control
no-cache
None
content
application/json
None
BODY raw
{
"uid":184,
"postid": 909,
"device": "jlajdlkjfd"
}
Example Request
POST {{host}}api/post/postDetails
{
"uid":184,
"postid": 909,
"device": "jlajdlkjfd"
}
Example Response
200 - OK
{
"status": true,
"postDetails": [
{
"postid": 909,
"caption": "@rutt @aaru009 @haider_2 @Angelpriya @michel_09 @Angelpriya @michel_09 @rutt @aaru009 @haider_2 @Angelpriya @michel_09 @aaru009 @rutt",
"mood": "",
"wearing": "",
"playing": "",
"type": 0,
"listening": "",
"watching": "",
"onlyMe": 0,
"location": "",
"postImage": "1685434263_ge.jpeg",
"videoImage": "",
"postImage_height": 1096,
"postImage_width": 1000,
"address": "",
"lat": "",
"lon": "",
"user_id": 184,
"owner_id": 90,
"created": "2023-09-08T11:31:40.000000Z",
"modifiedon": "2023-09-08T11:31:40.000000Z",
"isactive": 1,
"sharePostid": 850,
"name": "api test 2",
"coverPic": "img/mzTCBS61gUC0Ghw5iKilPOgQGNS5hKLVzoE8Jopu.jpg",
"userName": "apitest2",
"userImage": "img/CnDrbQKZB8VQGFQiQ1RFqGQkkRssCOeVkmQhNE4R.jpg",
"privatePost": 0,
"commentOnPost": null,
"sharePost": 0,
"totalLikes": 0,
"totalViews": 0,
"totalComments": 0,
"isLike": 0,
"totalShares": 0,
"isShare": 0,
"ownerid": 90,
"sharedusername": "hey__arjun",
"shareduserfullname": "Arjun Gongely",
"likeprivate": false,
"videoprivate": false
}
],
"method": "postDetails",
"message": "postDetails",
"code": "1"
}
POST
deleterePost
{{host}}api/post/deleterePost
HEADERS
Accept
application/json
None
cache-control
no-cache
None
Content-Type
application/json
None
BODY raw
{
"uid":184,
"postid": 914
}
Example Request
POST {{host}}api/post/deleterePost
{
"uid":184,
"postid": 914
}
Example Response
200 - OK
{
"status": true,
"code": 1,
"message": "sharePost Deleted Successfully"
}