# Models

## The Contact object

```json
{"openapi":"3.1.0","info":{"title":"Brand API - Contacts","version":"v14"},"components":{"schemas":{"Contact":{"type":"object","properties":{"Id":{"type":"string","description":"Unique Contact ID. System-created contacts are prefixed with 'M'."},"FirstName":{"type":"string"},"LastName":{"type":"string"},"EmailAddress":{"type":"string","format":"email"},"Title":{"type":"string","nullable":true},"ProfileImage":{"type":"string","format":"uri-reference"},"WorkPhoneNumberCountry":{"type":"string"},"WorkPhoneNumber":{"type":"string"},"CellphoneNumberCountry":{"type":"string"},"CellphoneNumber":{"type":"string"},"Editable":{"type":"boolean","description":"Indicates if the contact is user-created and fully editable (`true`) or system-created and partially editable (`false`)."},"Labels":{"type":"array","items":{"type":"string"}},"Accounts":{"type":"array","items":{"type":"object","properties":{"Id":{"type":"string"},"Name":{"type":"string"}}}},"Uri":{"type":"string","format":"uri-reference"}}}}}}
```

## The ContactCreate object

```json
{"openapi":"3.1.0","info":{"title":"Brand API - Contacts","version":"v14"},"components":{"schemas":{"ContactCreate":{"type":"object","required":["FirstName","LastName","EmailAddress","Accounts"],"properties":{"FirstName":{"type":"string"},"LastName":{"type":"string"},"EmailAddress":{"type":"string","format":"email"},"Accounts":{"type":"string","description":"A comma-separated string of partner account IDs."},"Title":{"type":"string"},"ProfileImageUrl":{"type":"string","format":"uri","description":"URL of an image file. Cannot be used with `ProfileImageFile`."},"ProfileImageFile":{"type":"string","format":"binary","description":"An image file to upload. Use `multipart/form-data`."},"WorkPhoneNumber":{"type":"string","description":"Requires `WorkPhoneNumberCountry`."},"WorkPhoneNumberCountry":{"type":"string"},"CellphoneNumber":{"type":"string","description":"Requires `CellphoneNumberCountry`."},"CellphoneNumberCountry":{"type":"string"},"Labels":{"type":"string","description":"A comma-separated string of labels."}}}}}}
```

## The ContactUpdate object

```json
{"openapi":"3.1.0","info":{"title":"Brand API - Contacts","version":"v14"},"components":{"schemas":{"ContactUpdate":{"type":"object","properties":{"FirstName":{"type":"string"},"LastName":{"type":"string"},"EmailAddress":{"type":"string","format":"email"},"Title":{"type":"string"},"ProfileImageUrl":{"type":"string","format":"uri"},"ProfileImageFile":{"type":"string","format":"binary"},"WorkPhoneNumber":{"type":"string","description":"The contact's work phone number. Requires `WorkPhoneNumberCountry` if updated."},"WorkPhoneNumberCountry":{"type":"string","description":"Two-letter ISO 3166-1 alpha-2 country code. Required when `WorkPhoneNumber` is updated."},"CellphoneNumber":{"type":"string","description":"The contact's cellphone number. Requires `CellphoneNumberCountry` if updated."},"CellphoneNumberCountry":{"type":"string","description":"Two-letter ISO 3166-1 alpha-2 country code. Required when `CellphoneNumber` is updated."},"LabelsAdd":{"type":"string","description":"A comma-separated string of labels to add."},"LabelsRemove":{"type":"string","description":"A comma-separated string of labels to remove."},"AccountsAdd":{"type":"string","description":"A comma-separated string of partner account IDs to add."},"AccountsRemove":{"type":"string","description":"A comma-separated string of partner account IDs to remove."}}}}}}
```

## The SuccessUriResponse object

```json
{"openapi":"3.1.0","info":{"title":"Brand API - Contacts","version":"v14"},"components":{"schemas":{"SuccessUriResponse":{"type":"object","properties":{"Status":{"type":"string"},"Uri":{"type":"string","format":"uri-reference"}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://integrations.impact.com/brand-api-reference/reference/contacts/models.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
