Get Contacts
GEThttps://api.tinyemail.com/v1/contacts
Get all contacts
Request
Responses
- 200
- 400
- 401
- 405
successful operation
- application/json
- Schema
- Example (from schema)
Schema
contacts object[]
{
"contacts": [
{
"id": "00000000-0000-0000-0000-000000000000",
"name": "my contacts",
"numberOfMembers": 10000
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "Some error message"
}
API key is missing or invalid
Method Not Allowed
Authorization: X-API-KEY
name: X-API-KEYtype: apiKeyin: header
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://api.tinyemail.com/v1/contacts' \
-H 'Accept: application/json' \
-H 'X-API-KEY: <API_KEY_VALUE>'
ResponseClear