PUT/projects/api/v3/projects/people/:userId/enqueue.json

Bulk applies a user to many projects

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 OK
    AddPeopleToProjectResponse contains information about which users were and weren't add to the project as well as why the users were not able to be added
  • Code
    400
    Type
    object
    Schema
    Description
    400 Bad Request
    ErrorResponse defines how []Error should be marshaled to JSON.
  • Code
    403
    Type
    object
    Schema
    Description
    403 Forbidden
    ErrorResponse defines how []Error should be marshaled to JSON.

Examples

200 OK

AddPeopleToProjectResponse
{
  "info": [
    "string"
  ],
  "teamIds": [
    0
  ],
  "usersAdded": [
    0
  ],
  "usersAlreadyInProject": [
    0
  ],
  "usersNotAdded": [
    0
  ]
}