Projects/Id
/projects/:id
This endpoint allows you to update an existing project by providing the necessary details.
Request Body
Response
The response for this request is an empty array with a 200 HTTP Code
PUT
/projects/{id}
Authorization
Authorization
RequiredBearer <token>In: header
Request Body
application/json
OptionalPath Parameters
id
RequiredstringResponse Body
Successful response
curl -X PUT "https://api.nodiref.com/projects/9ebf0a3b-6d2b-4016-9d52-7fc97621f428" \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{
"company_id": "asd",
"external_id": "external-id",
"is_internal": true,
"name": "Test Name 2"
}'
Empty