Welcome to Livesocialproof. Make sure to login at least once ever 30 days to stay active.

Team members

GET https://livesocialproof.com/api/team-members/{team_id}
curl --request GET \
--url 'https://livesocialproof.com/api/team-members/{team_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": [ { "id": 1, "team_id": 1, "user_email": "hello@example.com", "access": { "read": true, "create": true, "update": true, "delete": false }, "status": 1, "datetime": "2025-02-05 14:01:15", "last_datetime": null } ] }
POST https://livesocialproof.com/api/teams
Parameters Details Description
team_id Required Integer -
user_email Required String -
access Optional String Array read.all
create.campaigns , create.notifications
update.campaigns , update.notifications
delete.campaigns , delete.notifications
curl --request POST \
--url 'https://livesocialproof.com/api/team-members' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'team_id=1' \
--form 'user_email=hello@example.com' \
{ "data": { "id": 1 } }
POST https://livesocialproof.com/api/team-members/{team_member_id}
Parameters Details Description
access Optional String Array read.all
create.campaigns , create.notifications
update.campaigns , update.notifications
delete.campaigns , delete.notifications
curl --request POST \
--url 'https://livesocialproof.com/api/team-members/{team_member_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'access[]=create' \
--form 'access[]=update' \
{ "data": { "id": 1 } }
DELETE https://livesocialproof.com/api/team-members/{team_member_id}
curl --request DELETE \
--url 'https://livesocialproof.com/api/team-members/{team_member_id}' \
--header 'Authorization: Bearer {api_key}' \