Skip to content

Commit

Permalink
Updated following file(s): crm.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklloyd committed Oct 14, 2024
1 parent 6ac88f7 commit 729ec7f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions crm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1383,6 +1383,7 @@ components:
last_name: Musk
email: [email protected]
company_id: '12345'
owner_id: '12345'
properties:
name:
type: string
Expand All @@ -1408,6 +1409,10 @@ components:
type: string
description: Unique identifier for the associated company of the contact to filter on
example: '12345'
owner_id:
type: string
description: Unique identifier for the owner of the contact to filter on
example: '12345'
additionalProperties: false
ContactsSort:
type: object
Expand Down Expand Up @@ -6034,6 +6039,8 @@ paths:
description: Salesforce imposes a maximum offset limit of 2000. Exceeding this offset will result in an error from Salesforce. For result sets larger than 2000 items, it is necessary to set the pagination limit to 200, as this will enforce the use of batchSize for pagination. Note that setting a limit lower than 200 will not reduce the batchSize due to Salesforce's minimum batch size policy of 200, as detailed in their documentation [here](https://developer.salesforce.com/docs/atlas.en-us.250.0.api_rest.meta/api_rest/headers_queryoptions.htm) and will have no effect.
- connector: zoho-crm
description: When using the phone_number filter for contacts in Zoho CRM, the filter does not work with numbers containing dashes (e.g., 989-989-989) or their URL-encoded equivalents (e.g., 989%2D989%2D989). It only works with continuous digits (e.g., 9898989898).
- connector: microsoft-outlook
description: To get custom fields, make a get contact call with owner_id. If no owner_id is provided, the list call will return the contacts of the authenticated user.
responses:
'200':
$ref: '#/components/responses/GetContactsResponse'
Expand Down Expand Up @@ -6250,8 +6257,12 @@ paths:
- $ref: '#/components/parameters/serviceId'
- $ref: '#/components/parameters/raw'
- $ref: '#/components/parameters/fields'
- $ref: '#/components/parameters/contactsFilter'
security:
- apiKey: []
x-apideck-gotchas:
- connector: microsoft-outlook
description: If no owner_id is provided, the get call will return the contacts of the authenticated user only.
responses:
'200':
$ref: '#/components/responses/GetContactResponse'
Expand Down Expand Up @@ -6469,6 +6480,9 @@ paths:
- $ref: '#/components/parameters/raw'
security:
- apiKey: []
x-apideck-gotchas:
- connector: microsoft-outlook
description: To delete another user's contact use proxy api.
responses:
'200':
$ref: '#/components/responses/DeleteContactResponse'
Expand Down

0 comments on commit 729ec7f

Please sign in to comment.