Contacts
Get a Contact
GET
https://api.tiny.plus/v2/contacts/{{id}}
This endpoint allows you to get a full Contact record.
Path Parameters
Name | Type | Description |
---|---|---|
id | number | ID of the contact |
Query Parameters
Name | Type | Description |
---|---|---|
with_related | boolean | Can be either |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Your access token. |
Example Usage
List Contacts
GET
https://api.tiny.plus/v2/contacts
This endpoint allows you to get a paginated list of Contacts, optionally filtered by criteria.
Query Parameters
Name | Type | Description |
---|---|---|
{{field_name}} | string | You can provide any |
me | boolean | If this key is present, it will limit the results to only records where the user associated with the API key is the |
subscribed | boolean | Similar to the |
limit | number | Used for pagination. Limit is the number of records to return from the full resultset. The default is |
start | number | Used for pagination. Set this value to the cursor position into the total resultset to return this time. eg. to receive the 101st to the 115th record, set this to |
sort | string | Provide a field name and optionally a direction separated by a space to sort the returned results. For example, |
return_format | string | Can be either |
with_related | boolean | Can be either |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Your access token. |
Example Usage
Create a Contact
POST
https://api.tiny.plus/v2/contacts
You can create a new tiny+ contact with this endpoint. The only required field to create a Contact in tiny+ is name
, however we recommend you provide as much information as possible.
Query Parameters
Name | Type | Description |
---|---|---|
return_record | boolean | Add this parameter to get a copy of the newly created record. Save yourself a call! |
Headers
Name | Type | Description |
---|---|---|
Accepts | string | Use |
Content-Type | string | Use |
Authorization | string | Your access token. |
Request Body
Name | Type | Description |
---|---|---|
JSON object | object |
|
Update a Contact
PATCH
https://api.tiny.plus/v2/contacts/{{id}}
You can edit a tiny+ Contact with this endpoint. Note: you only need to pass the field(s) you wish to change.
Path Parameters
Name | Type | Description |
---|---|---|
id | number | ID of the contact. |
Headers
Name | Type | Description |
---|---|---|
Accepts | string | Use |
Content-Type | string | Use |
Authorization | string | Your access token. |
Request Body
Name | Type | Description |
---|---|---|
JSON object | object |
|
Delete a Contact
DELETE
https://api.tiny.plus/v2/contacts/{{id}}
Delete a Company record.
Path Parameters
Name | Type | Description |
---|---|---|
id | string | ID of the contact. |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Your access token. |
Contacts Field Reference
Field | Type | Details | Permission |
id | Number | Unique record identifier. | Read-only |
name | String (up to 200 characters). REQUIRED. | Contact Name. eg. | Full |
first_name | String | Optionally, you can create / edit a contact as First Name and Last Name instead of the name field. If you do not provide this field, we will generate this value based on the name field. | Full |
last_name | String | (As above) | Full |
description | String | Description. | Full |
created_date | String (YYYY-MM-DD hh:mm:ss) | Date record was first created. | Read-only |
modified_date | String (YYYY-MM-DD hh:mm:ss) | Date record was last modified. | Read-only |
created_user | Number | ID of user who made the record. | Read-only |
modified_user | Number | ID of user who last edited the record. | Read-only |
assigned_user | Number | ID of assigned user. | Full |
is_synced | Boolean | Whether the record has been synced from another source. | Full |
sync_origin | String (up to 50 characters) | A simple string that you supply to let tiny+ users know where the record is synced from. | Full |
remote_id | String (up to 200 characters) | A remote identifier for this record. | Full |
record_url | String | The fully qualified URI of the record. | Read-only |
title | String | The title or position of this contact. eg. | Full |
email_address | String (Email Address) | Must be a valid email address in RFC 822 syntax. Invalid entries are ignored. | Full |
String | A URL to the contact's LinkedIn page. | Full | |
String | A Twitter @handle. | Full | |
mobile | String | Mobile telephone number. | Full |
office_tel | String | Office telephone number. | Full |
direct_tel | String | Direct Line telephone number. | Full |
physical_address1 | String | Address - Line 1 | Full |
physical_address2 | String | Address - Line 2 | Full |
physical_town | String | Address - the Town/City/Locality. | Full |
physical_state | String | Address - the State or Province. | Full |
physical_postcode | String | Address - the Postal Code or Region Code. | Full |
physical_country | String | Address - the Country. | Full |
external_url | String or JSON object | A link to this contact in another system. Helpful when used with sync_origin. This can hold a simple string URL. However some records may exist in multiple systems, so we recommend you namespace your external URL by providing a JSON object like so:
This will make sure that other integrations will not interfere with your URL. | Full |
notes | String | A space for extra notes about this contact. | Full |
Last updated