added

New v3 API endpoints for organization-level operations

When you sign in to your BILL developer account with /v3/login, you sign in as a user of the BILL organization. In the API response, userId is the BILL-generated ID of the signed-in user.

Organization operations

We have introduced a set of organization API endpoints for organization-level users.

OperationAPI endpoint
Get organization detailsGET /v3/organizations/{organizationId}
Update an organizationPATCH /v3/organizations/{organizationId}

User operations

As a user with the ADMINISTRATOR user role in a BILL organization, you can use the BILL API to create other users and also manage user access in the BILL organization.

We have introduced a set of user API endpoints for organization-level users.

OperationAPI endpoint
Create a userPOST /v3/users
Get user detailsGET /v3/users/{userId}
Update a userPATCH /v3/users/{userId}
Archive a userPOST /v3/users/{userId}/archive
Restore an archived userPOST /v3/users/{userId}/restore
Get list of user rolesGET /v3/roles
Get user role detailsGET /v3/roles/{roleId}

See Organizations and Users for more information.