> For the complete documentation index, see [llms.txt](https://drop-cowboy.gitbook.io/drop-cowboy-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://drop-cowboy.gitbook.io/drop-cowboy-docs/openapi-specs/models.md).

# Models

## The RVMRequest object

```json
{"openapi":"3.1.0","info":{"title":"Drop Cowboy Public API","version":"1.0.0"},"components":{"schemas":{"RVMRequest":{"type":"object","properties":{"team_id":{"type":"string","description":"Located on the API Setting tab. (Required)","enum":["<Your Account>"]},"secret":{"type":"string","description":"Located on the API Setting tab. (Required)","enum":["<Your Secret>"]},"foreign_id":{"type":"string","description":"A value to identify this drop in your system. Will be passed through to you in the webhook callback. Max length 256 characters. (Required)","enum":["<Your system's ID>"]},"brand_id":{"type":"string","description":"Located on in your account's trust center tab. (Required)","enum":["<Your Brand GUID>"]},"phone_number":{"type":"string","description":"Your contact's phone number in E.164 format. (Required)","enum":[15552223333]},"recording_id":{"type":"string","description":"The ID of the audio recording to send to your contacts. Located on in your account's recordings tab. *Not required if you are using audio_url or voice_id","enum":["<Your Recording GUID>"]},"voice_id":{"type":"string","description":"The ID of the Mimic AITM voice to use when reading your tts_body. Located on in your account's voices tab. *Not required if you are audio_url or recording_id. Must use in conjunction with tts_body.","enum":["<Your Voice GUID>"]},"tts_body":{"type":"string","description":"The text you want Mimic AITM to convert to speech using the voice_id you specify. *Required if using voice_id","enum":["Hey Joe","this is Bob from Brand. I'm calling you because..."]},"audio_url":{"type":"string","description":"Use of this property requires special approval. Please contact support. | A url to the voicemail audio to play (mp3 or wav). *Not required if you are using recording_id or voice_id","enum":["https://example.com/your-file.mp3"]},"audio_type":{"type":"string","description":"Use of this property requires special approval. Please contact support.","enum":["mp3","wav"]},"forwarding_number":{"type":"string","description":"The phone number to forward calls and texts to when the contact replies to your message. Must be in E.164 format.","enum":[15557778888]},"phone_ivr_id":{"type":"string","description":"The IVR to use when your contact calls you back. Located on in your account's phone ivr tab.","enum":["<Your IVR GUID>"]},"pool_id":{"type":"string","description":"The ID of the private number pool to select phone numbers from based on geographic location of your contact.","enum":["Defaults to the public pool of shared numbers"]},"postal_code":{"type":"string","description":"The zip code / postal code of your contact. Supplying a value for postal code is optional but provides more accurate compliance with TCPA calling hours.","enum":[2101,"90210-0001"]},"callback_url":{"type":"string","description":"Override the default RVM webhook url that you specified in your API settings.","enum":["http://example.com"]},"byoc":{"type":"object","description":"Wholesale customers are able to specify SIP Trunks and STIR/SHAKEN credentials.","enum":["Please contact us for details"]}},"required":["team_id","secret","foreign_id","brand_id","phone_number"]}}}}
```

## The RVMResponse object

```json
{"openapi":"3.1.0","info":{"title":"Drop Cowboy Public API","version":"1.0.0"},"components":{"schemas":{"RVMResponse":{"type":"object","properties":{"status":{"type":"string"}}}}}}
```

## The SMSRequest object

```json
{"openapi":"3.1.0","info":{"title":"Drop Cowboy Public API","version":"1.0.0"},"components":{"schemas":{"SMSRequest":{"type":"object","properties":{"team_id":{"type":"string","description":"Located on the API Setting tab. (Required)","enum":["<Your Account>"]},"secret":{"type":"string","description":"Located on the API Setting tab. (Required)","enum":["<Your Secret>"]},"phone_number":{"type":"string","description":"Your contact's phone number in E.164 format. (Required)","enum":[15552223333]},"caller_id":{"type":"string","description":"The phone number to forward calls and texts to when the contact replies to your message. Must be in E.164 format. (Required)","enum":[15557778888]},"pool_id":{"type":"string","description":"The ID of the private number pool you registered to send SMS messages. (Required)"},"sms_body":{"type":"string","description":"Plain text containing your message. Character limit is 160. (Required)","maxLength":160,"enum":["Hello world"]},"opt_in":{"type":"boolean","description":"Confirmation that you obtained OPT-IN permission to send SMS to the recipient as required by law. (Required)","enum":[true]},"callback_url":{"type":"string","description":"Override the default RVM webhook url that you specified in your API settings.","enum":["http://example.com"]},"foreign_id":{"type":"string","description":"A value to identify this drop in your system. Will be passed through to you in the webhook callback.","maxLength":256,"enum":["<Your system's ID>"]}},"required":["team_id","secret","phone_number","caller_id","pool_id","sms_body","opt_in"]}}}}
```

## The SMSResponse object

```json
{"openapi":"3.1.0","info":{"title":"Drop Cowboy Public API","version":"1.0.0"},"components":{"schemas":{"SMSResponse":{"type":"object","properties":{"status":{"type":"string"}}}}}}
```

## The ListCreatedResponse object

```json
{"openapi":"3.1.0","info":{"title":"Drop Cowboy Public API","version":"1.0.0"},"components":{"schemas":{"ListCreatedResponse":{"type":"object","properties":{"list_id":{"type":"string","description":"The UUID of the list. Use this value in other calls to the contact list api endpoints. It is safe to cache this value client side in your app."},"list_name":{"type":"string","description":"A string containing the name of the list."},"created_at":{"type":"integer","description":"Milliseconds since epoch of when the list was created."}}}}}}
```

## The ListDetailsResponse object

```json
{"openapi":"3.1.0","info":{"title":"Drop Cowboy Public API","version":"1.0.0"},"components":{"schemas":{"ListDetailsResponse":{"type":"object","properties":{"list_id":{"type":"string","description":"The UUID of the list. Use this value in other calls to the contact list api endpoints. It is safe to cache this value client side in your app."},"list_name":{"type":"string","description":"A string containing the name of the list."},"created_at":{"type":"integer","description":"Milliseconds since epoch of when the list was created."},"contact_count":{"type":"integer","description":"The total number of contacts in the list."}}}}}}
```

## The AppendContactsRequest object

```json
{"openapi":"3.1.0","info":{"title":"Drop Cowboy Public API","version":"1.0.0"},"components":{"schemas":{"AppendContactsRequest":{"type":"object","properties":{"fields":{"type":"array","items":{"type":"string"},"description":"Array of strings that define the data types being passed in the Values attribute. It is acceptable to have repeat field types specified if your contacts have multiple phone numbers, pass in the value of “phone” multiple times in this array. Possible field types are: record_id, first_name, last_name, company, email, phone, address1, address2, city, state, postal, country, custom1, custom2, custom3, custom4, custom5. (Required)\n"},"values":{"type":"array","items":{"type":"array"},"description":"An array of arrays. Inner arrays contain the values associated with the field types you specify in the fields attribute. You may pass in up to 10,000 contacts per api call. (Required)"},"region":{"type":"string","description":"The ISO country code to use when converting your phone number values to E.164 format. If yourphone numbers are already formatted in E.164 then the region attribute is ignored. Defaults to US."}},"required":["fields","values"]}}}}
```

## The AppendContactsResponse object

```json
{"openapi":"3.1.0","info":{"title":"Drop Cowboy Public API","version":"1.0.0"},"components":{"schemas":{"AppendContactsResponse":{"type":"object","properties":{"accepted_count":{"type":"integer","description":"The number of contacts appended to the list."},"rejected":{"type":"array","items":{"type":"object","description":"An array of objects containing the index of the rejected contact from the value array that you passed to the api and the reason that contact was rejected.","properties":{"index":{"type":"integer"},"reason":{"type":"string"}}}}}}}}}
```

## The BrandListResponse object

```json
{"openapi":"3.1.0","info":{"title":"Drop Cowboy Public API","version":"1.0.0"},"components":{"schemas":{"BrandListResponse":{"type":"array","items":{"type":"object","properties":{"brand_id":{"type":"string"},"company_name":{"type":"string"},"dba_name":{"type":"string"},"registered":{"type":"boolean"},"api_allowed":{"type":"boolean"}}}}}}}
```

## The MediaListResponse object

```json
{"openapi":"3.1.0","info":{"title":"Drop Cowboy Public API","version":"1.0.0"},"components":{"schemas":{"MediaListResponse":{"type":"array","items":{"type":"object","properties":{"media_id":{"type":"string"},"name":{"type":"string"},"created_at":{"type":"integer"},"api_allowed":{"type":"boolean"}}}}}}}
```

## The RecordingListResponse object

```json
{"openapi":"3.1.0","info":{"title":"Drop Cowboy Public API","version":"1.0.0"},"components":{"schemas":{"RecordingListResponse":{"type":"array","items":{"type":"object","properties":{"media_id":{"type":"string"},"name":{"type":"string"},"created_at":{"type":"integer"},"api_allowed":{"type":"boolean"}}}}}}}
```

## The PoolListResponse object

```json
{"openapi":"3.1.0","info":{"title":"Drop Cowboy Public API","version":"1.0.0"},"components":{"schemas":{"PoolListResponse":{"type":"array","items":{"type":"object","properties":{"pool_id":{"type":"string"},"name":{"type":"string"},"brand_id":{"type":"string"},"service_type":{"type":"string"},"number_count":{"type":"integer"}}}}}}}
```


---

# 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, and the optional `goal` query parameter:

```
GET https://drop-cowboy.gitbook.io/drop-cowboy-docs/openapi-specs/models.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
