# Models

## The Contact object

```json
{"openapi":"3.1.0","info":{"title":"Brand API - Contacts","version":"v12"},"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"},"ProfileImage":{"type":"string","format":"uri-reference"},"WorkPhoneNumberCountry":{"type":"string"},"WorkPhoneNumber":{"type":"string"},"CellphoneNumberCountry":{"type":"string"},"CellphoneNumber":{"type":"string"},"Editable":{"type":"boolean"},"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":"v12"},"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"},"ProfileImageFile":{"type":"string","format":"binary","description":"Image file to upload."},"WorkPhoneNumber":{"type":"string"},"WorkPhoneNumberCountry":{"type":"string"},"CellphoneNumber":{"type":"string"},"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":"v12"},"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":"Comma-separated labels to add."},"LabelsRemove":{"type":"string","description":"Comma-separated labels to remove."},"AccountsAdd":{"type":"string","description":"Comma-separated account IDs to associate."},"AccountsRemove":{"type":"string","description":"Comma-separated account IDs to disassociate."}}}}}}
```


---

# 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/brand-api-reference-v12/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.
