Warning: Undefined property: stdClass::$maintenance_is_enabled in /home/u777764674/domains/axiox.net/public_html/PushNotifications/app/core/App.php on line 244 Warning: Undefined property: stdClass::$x in /home/u777764674/domains/axiox.net/public_html/PushNotifications/app/core/Meta.php on line 69 Warning: Undefined property: stdClass::$ai_scraping_is_allowed in /home/u777764674/domains/axiox.net/public_html/PushNotifications/app/core/Controller.php on line 51 Team members - API 文檔 - AiO APP控件
下載客戶端,操作更方便!下载
Warning: Undefined property: stdClass::$guests_is_enabled in /home/u777764674/domains/axiox.net/public_html/PushNotifications/themes/altum/views/partials/announcements.php on line 5 Warning: Undefined property: stdClass::$users_is_enabled in /home/u777764674/domains/axiox.net/public_html/PushNotifications/themes/altum/views/partials/announcements.php on line 5 Warning: Undefined property: stdClass::$ad_blocker_detector_is_enabled in /home/u777764674/domains/axiox.net/public_html/PushNotifications/themes/altum/views/partials/ad_blocker_detector.php on line 3 Warning: Undefined property: stdClass::$admin_spotlight_is_enabled in /home/u777764674/domains/axiox.net/public_html/PushNotifications/themes/altum/views/wrapper.php on line 80 Warning: Undefined property: stdClass::$user_spotlight_is_enabled in /home/u777764674/domains/axiox.net/public_html/PushNotifications/themes/altum/views/wrapper.php on line 80

Team members

GET https://push.axiox.net/api/team-members/{team_id}
curl --request GET \
--url 'https://push.axiox.net/api/team-members/{team_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": [ { "id": 1, "team_id": 1, "user_email": "[email protected]", "access": { "read": true, "create": true, "update": true, "delete": false }, "status": 1, "datetime": "2025-04-26 20:10:49", "last_datetime": null } ] }
POST https://push.axiox.net/api/teams
參數 Details 描述
team_id 必需 整數 -
user_email 必需 字符串 -
access 可選 字符串 陣列 read.all
create.campaigns , create.notifications
update.campaigns , update.notifications
delete.campaigns , delete.notifications
curl --request POST \
--url 'https://push.axiox.net/api/team-members' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'team_id=1' \
--form 'user_email=[email protected]' \
{ "data": { "id": 1 } }
POST https://push.axiox.net/api/team-members/{team_member_id}
參數 Details 描述
access 可選 字符串 陣列 read.all
create.campaigns , create.notifications
update.campaigns , update.notifications
delete.campaigns , delete.notifications
curl --request POST \
--url 'https://push.axiox.net/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://push.axiox.net/api/team-members/{team_member_id}
curl --request DELETE \
--url 'https://push.axiox.net/api/team-members/{team_member_id}' \
--header 'Authorization: Bearer {api_key}' \