# Models

## The Contact object

```json
{"openapi":"3.1.0","info":{"title":"Brand Contacts API","version":"v11"},"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 CreateContactRequest object

```json
{"openapi":"3.1.0","info":{"title":"Brand Contacts API","version":"v11"},"components":{"schemas":{"CreateContactRequest":{"type":"object","required":["FirstName","LastName","EmailAddress","Accounts"],"properties":{"FirstName":{"type":"string"},"LastName":{"type":"string"},"EmailAddress":{"type":"string","format":"email"},"Accounts":{"type":"string"},"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"}}}}}}
```

## The UpdateContactRequest object

```json
{"openapi":"3.1.0","info":{"title":"Brand Contacts API","version":"v11"},"components":{"schemas":{"UpdateContactRequest":{"type":"object","properties":{"FirstName":{"type":"string"},"LastName":{"type":"string"},"EmailAddress":{"type":"string"},"Title":{"type":"string"},"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."},"LabelsAdd":{"type":"string"},"LabelsRemove":{"type":"string"},"AccountsAdd":{"type":"string"},"AccountsRemove":{"type":"string"}}}}}}
```

## The ContactResponse object

```json
{"openapi":"3.1.0","info":{"title":"Brand Contacts API","version":"v11"},"components":{"schemas":{"ContactResponse":{"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/brand-api-reference-v11/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.
