Add a manager to a user: Migration guide

This guide outlines the changes introduced in the Add a manager to a user v2 endpoint (previously known as addManagerToUser in v1).

💡

Key changes

  • HTTP method: The v2 endpoint uses the POST method, while v1 used the PUT method.
  • Identifier type: The v2 endpoint requires users' unique IDs. It no longer accepts email addresses as direct identifiers. Migrating requires extra steps if you previously used email. For more information, see the How to identify users in v2 section below.

Documentation links

Here are the links to the API reference for:

Endpoint mapping

Here's the direct correlation between the v1 and v2 endpoint URLs:

  • API v1: /api/v1/users/:user_email/managers/:manager_email
  • API v2: /api/v2/users/{userId}/managers/{managerId}

Behavior changes

How to identify users in v2

A key update in v2 is the standardized method for identifying users. For improved security and consistency, you must now use the user's unique internal ID when referencing a user.

  • If you already have the internal ID, you can use it directly.
  • If you only have the user's email address, you'll need to fetch their internal ID first.

To get the user ID based on their email address:

  1. Retrieve and cache all users:
    Call List all users to retrieve the full list of users in your organization. To ensure your application is performant, this data should be stored in a local database or cache that is updated periodically.
  2. Find the user and get their ID:
    Find the user object where the mail field matches the email you are searching for.
    Copy the value of their _id. This is the internal ID.

Input changes

This section details the specific alterations to the input requirements between API versions.

API v1 input example

curl --location -g --request PUT 'https://{{host}}/api/v1/users/:user_email/managers/:manager_email?company={{company}}&apiKey={{apiKey}}'

API v2 input example

curl --request POST \
     --url https://app.360learning.com/api/v2/users/507f1f77bcf86cd799439011/managers/507f1f77bcf86cd799439011 \
     --header '360-api-version: v2.0' \
     --header 'accept: application/json'

Main input differences

Change typeAPI v1API v2
Modified
Parameter
user_email (Path parameter, Required): Could be the email or the ID of the user. This parameter email was part of the URL path.userId (Required): user's internal ID. An email is no longer accepted here.
See Behavior changes (section above) for how to get the ID from an email.
Modified
Parameter
manager_email (Path parameter, Required): Could be the email or the ID of the user. This parameter email was part of the URL path.managerId (Required): manager user's internal ID. An email is no longer accepted here.
See Behavior changes (section above) for how to get the ID from an email.

Output changes

This section details the specific alterations to the successful output returned between API versions.

API v1 output example

{}

API v2 output example

// 204 No content

Main output differences

API v2 returns a 204 No Content status with no response body.