👨‍💼Management API (beta)

APIs to mange your account

Manage Team

invite user to team

POST https://push.techulus.com/api/management/v1/teams/invite

Use this endpoint to add a user to the team, once the user has accepted the invite, all future notifications will be recieved by the user.

Headers

NameTypeDescription

x-api-key*

String

Your account API key

Request Body

NameTypeDescription

team*

String

Team API key

email*

String

Invite email

{
	"success": true,
	"message": "Invite sent"
}

delete an invite/team member

DELETE https://push.techulus.com/api/management/v1/teams/invite

Use this endpoint to remove a user from the team or revoke an invite

Headers

NameTypeDescription

x-api-key*

String

Your account API key

Request Body

NameTypeDescription

team*

String

Team API key

email*

String

Invite email

{
	"success": true,
	"message": "Invite/Member removed"
}

Last updated