Edit partner contact

Edit the partner contact.

Note: PATCH calls update data partially. Any data not mentioned in the call, will be kept as is.

Request
Security:
path Parameters
partnerId
required
string

The ID of the partner. Obtain this from GET /partner-contact.

Example: 62
partnerContactId
required
string

The ID of the partner’s contact. Obtain this from GET /partner-contacts.

Example: 62
Request Body schema: application/json
id
required
number

The ID of the entity.

name
required
string

The name assigned to the entity. The partner contact name is assigned in the POST /partners/{partnerId}/contacts call.

email
required
string <email> (Email) ^\S+@\S+\.\S{2,}$

The email address of the entity.

accessLevel
string (accessLevel)
Default: "editor"

The access level of the entity.

Enum: "viewer" "editor" "editorWithoutMediaAccess"
Responses
200

Successful operation

400

Bad request error

401

Unauthorized error

403

Forbidden error

404

Not found error

500

Internal server error

patch/partners/{partnerId}/contacts/{partnerContactId}
Request samples
application/json
{
  • "id": 99999,
  • "name": "Harry",
  • "email": "email@email.com",
  • "accessLevel": "viewer"
}
Response samples
application/json
{
  • "requestId": "df5fg-45fgfdsg-45fg-45454"
}