/partners/:id
This endpoint allows you to update an existing partner by providing the necessary details.
Request Body
Response
The response for this request is an empty array with a 200 HTTP Code
PUT
/partners/{id}
Authorization
Authorization
RequiredBearer <token>In: header
Request Body
application/json
OptionalPath Parameters
id
RequiredstringResponse Body
OK
TypeScript Definitions
Use the response body type in TypeScript.
curl -X PUT "https://api.nodiref.com/partners/9ef54e02-35cc-42cd-a4b3-178c08a59581" \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{
"external_id": "EXTERNAL_ID",
"name": "PARTNER NAME",
"project_id": "UUID_PROJECT_ID"
}'
[]