> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://api.docs.modulards.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://api.docs.modulards.com/_mcp/server.

# List contact contact methods

GET https://api.modulards.com/api/public/v1/contacts/{contact_id}/contact-methods

Lists the Contact's methods - at most one overall, email or WhatsApp. No filters, sorts or includes: a method only ever exists under its parent, never resolved on its own.

Each entry carries `channel`, `value`, `created_at`, `updated_at`; there is no `self` link (a method has no standalone show route).

A read-only token is enough. A Client id on this URL answers 404.

Reference: https://api.docs.modulards.com/modular-ds-public-api/contacts/list-contact-contact-methods

## Authentication

- `Authorization` header (bearer token, required) — Personal access token created in the Modular DS dashboard; read-only tokens can only call GET endpoints.

## Request

### Path parameters

- `contact_id` (string, required)

### Query parameters

- `page[number]` (string, optional)
- `page[size]` (string, optional) — Max 50, default 15

## Response

### 200

200 - Contact contact methods

- `data` (list of ApiPublicV1ContactsContactIdContactMethodsGetResponsesContentApplicationJsonSchemaDataItems, optional)
- `jsonapi` (ApiPublicV1ContactsContactIdContactMethodsGetResponsesContentApplicationJsonSchemaJsonapi, optional)
- `links` (ApiPublicV1ContactsContactIdContactMethodsGetResponsesContentApplicationJsonSchemaLinks, optional)
- `meta` (ApiPublicV1ContactsContactIdContactMethodsGetResponsesContentApplicationJsonSchemaMeta, optional)

## Errors

### 404 Not Found Error

404 Not Found - Not a Contact

- `errors` (list of ApiPublicV1ContactsContactIdContactMethodsGetResponsesContentApplicationJsonSchemaErrorsItems, optional)
- `jsonapi` (ApiPublicV1ContactsContactIdContactMethodsGetResponsesContentApplicationJsonSchemaJsonapi, optional)

## Types

### ApiPublicV1ContactsContactIdContactMethodsGetResponsesContentApplicationJsonSchemaDataItems

- `attributes` (ApiPublicV1ContactsContactIdContactMethodsGetResponsesContentApplicationJsonSchemaDataItemsAttributes, optional)
- `id` (string, optional)
- `type` (string, optional)

### ApiPublicV1ContactsContactIdContactMethodsGetResponsesContentApplicationJsonSchemaJsonapi

- `version` (string, optional)

### ApiPublicV1ContactsContactIdContactMethodsGetResponsesContentApplicationJsonSchemaLinks

- `first` (string, optional)
- `last` (string, optional)
- `next` (any, optional, nullable)
- `prev` (any, optional, nullable)

### ApiPublicV1ContactsContactIdContactMethodsGetResponsesContentApplicationJsonSchemaMeta

- `current_page` (double, optional)
- `from` (double, optional)
- `last_page` (double, optional)
- `per_page` (double, optional)
- `to` (double, optional)
- `total` (double, optional)

### ApiPublicV1ContactsContactIdContactMethodsGetResponsesContentApplicationJsonSchemaErrorsItems

- `detail` (string, optional)
- `status` (string, optional)
- `title` (string, optional)

### ApiPublicV1ContactsContactIdContactMethodsGetResponsesContentApplicationJsonSchemaDataItemsAttributes

- `channel` (string, optional)
- `created_at` (string, optional)
- `updated_at` (string, optional)
- `value` (string, optional)

## Examples

**Response**

```json
{
  "data": [
    {
      "attributes": {
        "channel": "email",
        "created_at": "2026-08-10T09:00:00.000000Z",
        "updated_at": "2026-08-10T09:00:00.000000Z",
        "value": "bob@example.com"
      },
      "id": "401",
      "type": "contact-methods"
    }
  ],
  "jsonapi": {
    "version": "1.1"
  },
  "links": {
    "first": "https://api.modulards.com/api/public/v1/contacts/201/contact-methods?page%5Bnumber%5D=1",
    "last": "https://api.modulards.com/api/public/v1/contacts/201/contact-methods?page%5Bnumber%5D=1",
    "next": null,
    "prev": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "per_page": 15,
    "to": 1,
    "total": 1
  }
}
```

**SDK Code**

```python 200 - Contact contact methods
import requests

url = "https://api.modulards.com/api/public/v1/contacts/contact_id/contact-methods"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript 200 - Contact contact methods
const url = 'https://api.modulards.com/api/public/v1/contacts/contact_id/contact-methods';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go 200 - Contact contact methods
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.modulards.com/api/public/v1/contacts/contact_id/contact-methods"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby 200 - Contact contact methods
require 'uri'
require 'net/http'

url = URI("https://api.modulards.com/api/public/v1/contacts/contact_id/contact-methods")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java 200 - Contact contact methods
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.modulards.com/api/public/v1/contacts/contact_id/contact-methods")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php 200 - Contact contact methods
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.modulards.com/api/public/v1/contacts/contact_id/contact-methods', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp 200 - Contact contact methods
using RestSharp;

var client = new RestClient("https://api.modulards.com/api/public/v1/contacts/contact_id/contact-methods");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift 200 - Contact contact methods
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.modulards.com/api/public/v1/contacts/contact_id/contact-methods")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```