External Group Synchronization API

    Example Request:

    Example Response:

    1. HTTP/1.1 200
    2. Content-Type: application/json
    3. [
    4. {
    5. "orgId": 1,
    6. }
    7. ]
    • 200 - Ok
    • 401 - Unauthorized
    • 403 - Permission denied

    POST /api/teams/:teamId/groups

    Example Request:

    Example Response:

    1. HTTP/1.1 200
    2. Content-Type: application/json
    3. {"message":"Group added to Team"}
    • 200 - Ok
    • 401 - Unauthorized
    • 403 - Permission denied
    • 404 - Team not found

    DELETE /api/teams/:teamId/groups/:groupId

    Example Request:

    Example Response:

    1. HTTP/1.1 200
    2. Content-Type: application/json
    3. {"message":"Team Group removed"}
    • 200 - Ok
    • 401 - Unauthorized
    • 403 - Permission denied