Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1023 Bytes

CompaniesLinkUnlinkIdPatchRequest.md

File metadata and controls

24 lines (18 loc) · 1023 Bytes

Brevo::CompaniesLinkUnlinkIdPatchRequest

Properties

Name Type Description Notes
link_contact_ids Array<Integer> Contact ids for contacts to be linked with company [optional]
unlink_contact_ids Array<Integer> Contact ids for contacts to be unlinked from company [optional]
link_deals_ids Array<String> Deal ids for deals to be linked with company [optional]
unlink_deals_ids Array<String> Deal ids for deals to be unlinked from company [optional]

Example

require 'brevo'

instance = Brevo::CompaniesLinkUnlinkIdPatchRequest.new(
  link_contact_ids: [1,2,3],
  unlink_contact_ids: [4,5,6],
  link_deals_ids: [&quot;61a5ce58c5d4795761045990&quot;,&quot;61a5ce58c5d4795761045991&quot;,&quot;61a5ce58c5d4795761045992&quot;],
  unlink_deals_ids: [&quot;61a5ce58c5d4795761045994&quot;,&quot;61a5ce58c5d479576104595&quot;,&quot;61a5ce58c5d4795761045996&quot;]
)