> For the complete documentation index, see [llms.txt](https://apidocs.api19.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apidocs.api19.com/my-inventory/add-cnam.md).

# Add CNAM

## GET or POST Request

{% hint style="info" %}
<https://v1.api19.com/dids/cnam/add>
{% endhint %}

Add a CNAM (Caller ID Name) request for one of your DIDs

{% tabs %}
{% tab title="Curl Post" %}

```
curl https://v1.api19.com/dids/cnam/add \
 -d 'key=api_token' \
 -d 'did=7207921111' \
 -d 'cnam=COMPANY NAME'
```

{% endtab %}

{% tab title="Curl Get" %}

```
curl https://v1.api19.com/dids/cnam/add?key=apikey&did=7207921111&cnam=COMPANY%20NAME
```

{% endtab %}

{% tab title="JSON Response" %}

```json
{
	"status": "ok",
	"data": "CNAM request added"
}

OR

{
	"status": "error",
	"error": "Invalid DID"
}

OR

{
	"status": "error",
	"error": "CNAM must be 15 characters or less"
}
```

{% endtab %}
{% endtabs %}

## Parameters

* `did` (required) - The phone number to add CNAM for
* `cnam` (required) - Caller ID name (max 15 characters, alphanumeric plus spaces, periods, and commas)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://apidocs.api19.com/my-inventory/add-cnam.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.
