Skip to content
Developers
Assignments

Move hours from one user to another on the same project

POST /assignments/{assignment_id}/move

POST
/assignments/{assignment_id}/move

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

assignment_id*string

Source assignment ID.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://loading/api/v1/assignments/string/move" \  -H "Content-Type: application/json" \  -d '{    "toUserId": "0197a204-...",    "capabilityId": "0194b2e1-...",    "hours": 4  }'
{
  "data": {
    "toUserId": "0197a204-...",
    "capabilityId": "0194b2e1-...",
    "hours": 4
  }
}
Empty
Empty
Empty
Empty