Invite Users to Your Organization
3 min
this document explains how to invite additional users to your organization overview if you are a paying, active unith customer, you can invite additional users to join your organization this feature is currently available via api only before you begin, make sure you have the following information for the user you want to invite first name last name email address orgid inviting a user to invite a user, send a post request to the /user/invite endpoint with your bearer token and the new user's details curl x 'post' \ 'https //platform api unith ai/user/invite' \\ h 'accept application/json' \\ h 'authorization bearer yourbearertoken' \\ h 'content type application/json' \\ d '{ "firstname" "string", "lastname" "string", "email" "john doe\@example com", "role" "admin", "orgid" "yourorgid" }' parameters email email address of the user you want to invite to your organization role admin if the invited user should also have api access, otherwise customer orgid the id of your organization see below for how to find it finding your organization id if you don't already have your orgid, retrieve it with the following endpoint curl x 'get' \ 'https //platform api unith ai/user/me' \\ h 'accept application/json' \\ h 'authorization bearer yourbearertoken' the response includes your orgid , which you can then use in the invite request above