openapi: 3.0.3 info: title: ActiveCampaign SMS Broadcast Accounts Contacts API description: API for managing SMS broadcasts, lists, metrics, and AI-powered content generation in ActiveCampaign version: 3.0.0 contact: name: ActiveCampaign Support url: https://www.activecampaign.com x-generated-from: documentation servers: - url: https://{yourAccountName}.api-us1.com/api/3 description: US-based Users variables: yourAccountName: default: yourAccountName security: - ApiToken: [] tags: - name: Contacts paths: /contacts: post: summary: ActiveCampaign Create a Contact description: '' operationId: create-a-new-contact requestBody: content: application/json: schema: type: object properties: contact: properties: email: type: string description: 'Email address of the new contact. Example: ''test@example.com''. This field is required unless a phone number is provided and the account has opted-in to phone only contacts.' allowNullEmail: type: boolean description: Option to allow phone-only contacts. firstName: type: string description: First name of the new contact. lastName: type: string description: Last name of the new contact. phone: type: string description: Phone number of the contact. fieldValues: type: array description: Contact's custom field values [{field id, value}] orgid: type: integer description: (Deprecated) Please use Account-Contact end points format: int32 required: [] type: object examples: Request Example: value: contact: email: johndoe@example.com firstName: John lastName: Doe phone: '7223224241' fieldValues: - field: '1' value: The Value for First Field - field: '6' value: '2008-01-20' responses: '201': description: '201' content: application/json: examples: Result: value: "{\n \"fieldValues\": [\n {\n \"contact\": \"113\",\n \"field\": \"1\",\n \"value\": \"The Value for First Field\",\n \"cdate\": \"2020-08-01T10:54:59-05:00\",\n \"udate\": \"2020-08-01T14:13:34-05:00\",\n \"links\": {\n \"owner\": \"https://:account.api-us1.com/api/3/fieldValues/11797/owner\",\n \"field\": \"https://:account.api-us1.com/api/3/fieldValues/11797/field\"\n },\n \"id\": \"11797\",\n \"owner\": \"113\"\n },\n {\n \"contact\": \"113\",\n \"field\": \"6\",\n \"value\": \"2008-01-20\",\n \"cdate\": \"2020-08-01T10:54:59-05:00\",\n \"udate\": \"2020-08-01T14:13:34-05:00\",\n \"links\": {\n \"owner\": \"https://:account.api-us1.com/api/3/fieldValues/11798/owner\",\n \"field\": \"https://:account.api-us1.com/api/3/fieldValues/11798/field\"\n },\n \"id\": \"11798\",\n \"owner\": \"113\"\n }\n ],\n \"contact\": {\n \"email\": \"johndoe@example.com\",\n \"cdate\": \"2018-09-28T13:50:41-05:00\",\n \"udate\": \"2018-09-28T13:50:41-05:00\",\n \"orgid\": \"\",\n \"links\": {\n \"bounceLogs\": \"https://:account.api-us1.com/api/:version/contacts/113/bounceLogs\",\n \"contactAutomations\": \"https://:account.api-us1.com/api/:version/contacts/113/contactAutomations\",\n \"contactData\": \"https://:account.api-us1.com/api/:version/contacts/113/contactData\",\n \"contactGoals\": \"https://:account.api-us1.com/api/:version/contacts/113/contactGoals\",\n \"contactLists\": \"https://:account.api-us1.com/api/:version/contacts/113/contactLists\",\n \"contactLogs\": \"https://:account.api-us1.com/api/:version/contacts/113/contactLogs\",\n \"contactTags\": \"https://:account.api-us1.com/api/:version/contacts/113/contactTags\",\n \"contactDeals\": \"https://:account.api-us1.com/api/:version/contacts/113/contactDeals\",\n \"deals\": \"https://:account.api-us1.com/api/:version/contacts/113/deals\",\n \"fieldValues\": \"https://:account.api-us1.com/api/:version/contacts/113/fieldValues\",\n \"geoIps\": \"https://:account.api-us1.com/api/:version/contacts/113/geoIps\",\n \"notes\": \"https://:account.api-us1.com/api/:version/contacts/113/notes\",\n \"organization\": \"https://:account.api-us1.com/api/:version/contacts/113/organization\",\n \"plusAppend\": \"https://:account.api-us1.com/api/:version/contacts/113/plusAppend\",\n \"trackingLogs\": \"https://:account.api-us1.com/api/:version/contacts/113/trackingLogs\",\n \"scoreValues\": \"https://:account.api-us1.com/api/:version/contacts/113/scoreValues\"\n },\n \"id\": \"113\",\n \"organization\": \"\"\n }\n}" schema: type: object properties: fieldValues: type: array items: type: object properties: contact: type: string example: '113' field: type: string example: '1' value: type: string example: The Value for First Field cdate: type: string example: '2020-08-01T10:54:59-05:00' udate: type: string example: '2020-08-01T14:13:34-05:00' links: type: object properties: owner: type: string example: https://:account.api-us1.com/api/3/fieldValues/11797/owner field: type: string example: https://:account.api-us1.com/api/3/fieldValues/11797/field id: type: string example: '11797' owner: type: string example: '113' contact: type: object properties: email: type: string example: johndoe@example.com cdate: type: string example: '2018-09-28T13:50:41-05:00' udate: type: string example: '2018-09-28T13:50:41-05:00' orgid: type: string example: '' links: type: object properties: bounceLogs: type: string example: https://:account.api-us1.com/api/:version/contacts/113/bounceLogs contactAutomations: type: string example: https://:account.api-us1.com/api/:version/contacts/113/contactAutomations contactData: type: string example: https://:account.api-us1.com/api/:version/contacts/113/contactData contactGoals: type: string example: https://:account.api-us1.com/api/:version/contacts/113/contactGoals contactLists: type: string example: https://:account.api-us1.com/api/:version/contacts/113/contactLists contactLogs: type: string example: https://:account.api-us1.com/api/:version/contacts/113/contactLogs contactTags: type: string example: https://:account.api-us1.com/api/:version/contacts/113/contactTags contactDeals: type: string example: https://:account.api-us1.com/api/:version/contacts/113/contactDeals deals: type: string example: https://:account.api-us1.com/api/:version/contacts/113/deals fieldValues: type: string example: https://:account.api-us1.com/api/:version/contacts/113/fieldValues geoIps: type: string example: https://:account.api-us1.com/api/:version/contacts/113/geoIps notes: type: string example: https://:account.api-us1.com/api/:version/contacts/113/notes organization: type: string example: https://:account.api-us1.com/api/:version/contacts/113/organization plusAppend: type: string example: https://:account.api-us1.com/api/:version/contacts/113/plusAppend trackingLogs: type: string example: https://:account.api-us1.com/api/:version/contacts/113/trackingLogs scoreValues: type: string example: https://:account.api-us1.com/api/:version/contacts/113/scoreValues id: type: string example: '113' organization: type: string example: '' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\":\"No Result found for Subscriber with id 1\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 1 '422': description: '422' content: application/json: examples: Result: value: "{\n \"errors\": [\n {\n \"title\": \"Email address already exists in the system\",\n \"detail\": \"\",\n \"code\": \"duplicate\",\n \"source\": {\n \"pointer\": \"/data/attributes/email\"\n }\n }\n ]\n}" schema: type: object properties: errors: type: array items: type: object properties: title: type: string example: Email address already exists in the system detail: type: string example: '' code: type: string example: duplicate source: type: object properties: pointer: type: string example: /data/attributes/email deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK get: summary: ActiveCampaign List, Search, and Filter Contacts description: Use this API endpoint to list all contacts, search contacts, or filter contacts by many criteria. For example, search for specific contacts by email, list, account. operationId: list-all-contacts parameters: - name: ids in: query description: 'Filter contacts by ID. Can be repeated for multiple IDs. Example: ids[]=1&ids[]=2&ids[]=42' schema: type: string - name: email in: query description: Email address of the contact you want to get schema: type: string - name: email_like in: query description: Filter contacts that contain the given value in the email address schema: type: string - name: exclude in: query description: Exclude from the response the contact with the given ID schema: type: integer format: int32 - name: formid in: query description: Filter contacts associated with the given form schema: type: integer format: int32 - name: id_greater in: query description: Only include contacts with an ID greater than the given ID schema: type: integer format: int32 - name: id_less in: query description: Only include contacts with an ID less than the given ID schema: type: integer format: int32 - name: listid in: query description: Filter contacts associated with the given list schema: type: string - name: phone in: query description: Filter contacts where the phone number starts with the given value schema: type: string - name: organization in: query description: (Deprecated) Please use Account-Contact end points. Filter contacts associated with the given organization ID schema: type: integer format: int32 - name: search in: query description: Filter contacts that match the given value in the contact names, organization, phone or email schema: type: string default: 'null' - name: segmentid in: query description: Return only contacts that match a list segment. The first API call within 1 hour or an API call with the param `forceQuery=1` will kick off an new segment request. When the segment results are ready, subsequent API calls without the `forceQuery` param will return contacts that match the segment - timeout 1hr) schema: type: string default: null - name: seriesid in: query description: Filter contacts associated with the given automation schema: type: integer format: int32 - name: status in: query description: See [available values](https://developers.activecampaign.com/reference/contact) schema: type: integer format: int32 default: -1 - name: tagid in: query description: Filter contacts associated with the given tag schema: type: integer format: int32 - name: filters[created_before] in: query description: Filter contacts that were created prior to this date schema: type: string format: date - name: filters[created_after] in: query description: Filter contacts that were created after this date schema: type: string format: date - name: filters[updated_before] in: query description: Filter contacts that were updated before this date schema: type: string format: date - name: filters[updated_after] in: query description: Filter contacts that were updated after this date schema: type: string format: date - name: waitid in: query description: Filter by contacts in the wait queue of an automation block schema: type: integer format: int32 - name: orders[id] in: query description: Order contacts by unique ID schema: type: string default: ASC enum: - desc - asc - name: orders[cdate] in: query description: Order contacts by creation date schema: type: string enum: - desc - asc - name: orders[email] in: query description: Order contacts by email schema: type: string default: ASC enum: - desc - asc - name: orders[first_name] in: query description: Order contacts by first name schema: type: string enum: - desc - asc - name: orders[last_name] in: query description: Order contacts by last name schema: type: string enum: - desc - asc - name: orders[name] in: query description: Order contacts by full name schema: type: string enum: - desc - asc - name: orders[score] in: query description: Order contacts by score. Must be used in conjunction with the `sortId` parameter schema: type: string enum: - desc - asc - name: in_group_lists in: query description: Set this to "true" in order to return only contacts that the current user has permissions to see. schema: type: string - in: query name: forceQuery schema: type: number default: '0' enum: - 0 - 1 description: If present and equal to 1, a new segment request is kicked off which will return an updated result set. Otherwise, a segmented API request with a consistent sorting will return the same results for 1 hour. Note that re-ordering the results will also cause an updated result set to be returned. - in: query name: sortId schema: type: number description: If sorting results by a score or custom field, this parameter holds the id of the score or custom field respectively responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"scoreValues\": [],\n \"contacts\": [\n {\n \"cdate\": \"2018-09-12T16:53:50-05:00\",\n \"email\": \"adam@activecampaign.com\",\n \"phone\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"orgid\": \"0\",\n \"segmentio_id\": \"\",\n \"bounced_hard\": \"0\",\n \"bounced_soft\": \"0\",\n \"bounced_date\": \"0000-00-00\",\n \"ip\": \"0\",\n \"ua\": \"\",\n \"hash\": \"0d9c41ae7a4de516313673e2341f6003\",\n \"socialdata_lastcheck\": \"0000-00-00 00:00:00\",\n \"email_local\": \"\",\n \"email_domain\": \"\",\n \"sentcnt\": \"0\",\n \"rating_tstamp\": \"0000-00-00\",\n \"gravatar\": \"1\",\n \"deleted\": \"0\",\n \"anonymized\": \"0\",\n \"udate\": \"2018-09-12T17:00:00-05:00\",\n \"deleted_at\": \"0000-00-00 00:00:00\",\n \"scoreValues\": [],\n \"links\": {\n \"bounceLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/bounceLogs\",\n \"contactAutomations\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/contactAutomations\",\n \"contactData\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/contactData\",\n \"contactGoals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/contactGoals\",\n \"contactLists\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/contactLists\",\n \"contactLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/contactLogs\",\n \"contactTags\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/contactTags\",\n \"contactDeals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/contactDeals\",\n \"deals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/deals\",\n \"fieldValues\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/fieldValues\",\n \"geoIps\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/geoIps\",\n \"notes\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/notes\",\n \"organization\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/organization\",\n \"plusAppend\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/plusAppend\",\n \"trackingLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/trackingLogs\",\n \"scoreValues\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/scoreValues\"\n },\n \"id\": \"5\",\n \"organization\": null\n },\n {\n \"cdate\": \"2018-08-17T13:46:58-05:00\",\n \"email\": \"kconnell2@gmailc.om\",\n \"phone\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"orgid\": \"0\",\n \"segmentio_id\": \"\",\n \"bounced_hard\": \"0\",\n \"bounced_soft\": \"0\",\n \"bounced_date\": \"0000-00-00\",\n \"ip\": \"2130706433\",\n \"ua\": \"\",\n \"hash\": \"4641d20634346d27408557fde5e3ad3b\",\n \"socialdata_lastcheck\": \"0000-00-00 00:00:00\",\n \"email_local\": \"\",\n \"email_domain\": \"\",\n \"sentcnt\": \"0\",\n \"rating_tstamp\": \"0000-00-00\",\n \"gravatar\": \"1\",\n \"deleted\": \"0\",\n \"anonymized\": \"0\",\n \"adate\": \"2018-08-31T11:58:25-05:00\",\n \"udate\": \"2018-08-17T13:46:58-05:00\",\n \"deleted_at\": \"0000-00-00 00:00:00\",\n \"scoreValues\": [],\n \"links\": {\n \"bounceLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/bounceLogs\",\n \"contactAutomations\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/contactAutomations\",\n \"contactData\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/contactData\",\n \"contactGoals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/contactGoals\",\n \"contactLists\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/contactLists\",\n \"contactLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/contactLogs\",\n \"contactTags\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/contactTags\",\n \"contactDeals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/contactDeals\",\n \"deals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/deals\",\n \"fieldValues\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/fieldValues\",\n \"geoIps\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/geoIps\",\n \"notes\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/notes\",\n \"organization\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/organization\",\n \"plusAppend\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/plusAppend\",\n \"trackingLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/trackingLogs\",\n \"scoreValues\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/4/scoreValues\"\n },\n \"id\": \"4\",\n \"organization\": null\n },\n {\n \"cdate\": \"2018-09-18T11:02:57-05:00\",\n \"email\": \"test@gmail.com\",\n \"phone\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"orgid\": \"0\",\n \"segmentio_id\": \"\",\n \"bounced_hard\": \"0\",\n \"bounced_soft\": \"0\",\n \"bounced_date\": null,\n \"ip\": \"0\",\n \"ua\": null,\n \"hash\": \"\",\n \"socialdata_lastcheck\": null,\n \"email_local\": \"\",\n \"email_domain\": \"\",\n \"sentcnt\": \"0\",\n \"rating_tstamp\": null,\n \"gravatar\": \"1\",\n \"deleted\": \"0\",\n \"anonymized\": \"0\",\n \"adate\": null,\n \"udate\": \"2018-09-18T11:02:57-05:00\",\n \"edate\": null,\n \"deleted_at\": null,\n \"scoreValues\": [],\n \"links\": {\n \"bounceLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/bounceLogs\",\n \"contactAutomations\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/contactAutomations\",\n \"contactData\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/contactData\",\n \"contactGoals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/contactGoals\",\n \"contactLists\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/contactLists\",\n \"contactLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/contactLogs\",\n \"contactTags\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/contactTags\",\n \"contactDeals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/contactDeals\",\n \"deals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/deals\",\n \"fieldValues\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/fieldValues\",\n \"geoIps\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/geoIps\",\n \"notes\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/notes\",\n \"organization\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/organization\",\n \"plusAppend\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/plusAppend\",\n \"trackingLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/trackingLogs\",\n \"scoreValues\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/6/scoreValues\"\n },\n \"id\": \"6\",\n \"organization\": null\n },\n {\n \"cdate\": \"2018-08-17T09:56:33-05:00\",\n \"email\": \"test@test.com\",\n \"phone\": \"9813764\",\n \"firstName\": \"Test\",\n \"lastName\": \"\",\n \"orgid\": \"0\",\n \"segmentio_id\": \"\",\n \"bounced_hard\": \"0\",\n \"bounced_soft\": \"0\",\n \"bounced_date\": \"0000-00-00\",\n \"ip\": \"2130706433\",\n \"ua\": \"\",\n \"hash\": \"e4162c50b2edaf68b0d5012ef3cc82fd\",\n \"socialdata_lastcheck\": \"0000-00-00 00:00:00\",\n \"email_local\": \"\",\n \"email_domain\": \"\",\n \"sentcnt\": \"0\",\n \"rating_tstamp\": \"0000-00-00\",\n \"gravatar\": \"1\",\n \"deleted\": \"0\",\n \"anonymized\": \"0\",\n \"adate\": \"2018-08-31T11:52:08-05:00\",\n \"udate\": \"2018-08-17T09:56:33-05:00\",\n \"edate\": \"2018-08-17T13:48:46-05:00\",\n \"deleted_at\": \"0000-00-00 00:00:00\",\n \"scoreValues\": [],\n \"links\": {\n \"bounceLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/bounceLogs\",\n \"contactAutomations\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/contactAutomations\",\n \"contactData\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/contactData\",\n \"contactGoals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/contactGoals\",\n \"contactLists\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/contactLists\",\n \"contactLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/contactLogs\",\n \"contactTags\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/contactTags\",\n \"contactDeals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/contactDeals\",\n \"deals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/deals\",\n \"fieldValues\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/fieldValues\",\n \"geoIps\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/geoIps\",\n \"notes\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/notes\",\n \"organization\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/organization\",\n \"plusAppend\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/plusAppend\",\n \"trackingLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/trackingLogs\",\n \"scoreValues\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/2/scoreValues\"\n },\n \"id\": \"2\",\n \"organization\": null\n },\n {\n \"cdate\": \"2018-08-17T13:45:23-05:00\",\n \"email\": \"test@testing.com\",\n \"phone\": \"20405938\",\n \"firstName\": \"testing\",\n \"lastName\": \"\",\n \"orgid\": \"0\",\n \"segmentio_id\": \"\",\n \"bounced_hard\": \"0\",\n \"bounced_soft\": \"0\",\n \"bounced_date\": null,\n \"ip\": \"2130706433\",\n \"ua\": null,\n \"hash\": \"e3eba337bb1ede3bd073b1832e3f3def\",\n \"socialdata_lastcheck\": null,\n \"email_local\": \"\",\n \"email_domain\": \"\",\n \"sentcnt\": \"0\",\n \"rating_tstamp\": null,\n \"gravatar\": \"1\",\n \"deleted\": \"0\",\n \"anonymized\": \"0\",\n \"adate\": null,\n \"udate\": \"2018-08-17T13:45:23-05:00\",\n \"edate\": null,\n \"deleted_at\": null,\n \"scoreValues\": [],\n \"links\": {\n \"bounceLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/bounceLogs\",\n \"contactAutomations\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/contactAutomations\",\n \"contactData\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/contactData\",\n \"contactGoals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/contactGoals\",\n \"contactLists\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/contactLists\",\n \"contactLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/contactLogs\",\n \"contactTags\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/contactTags\",\n \"contactDeals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/contactDeals\",\n \"deals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/deals\",\n \"fieldValues\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/fieldValues\",\n \"geoIps\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/geoIps\",\n \"notes\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/notes\",\n \"organization\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/organization\",\n \"plusAppend\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/plusAppend\",\n \"trackingLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/trackingLogs\",\n \"scoreValues\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/3/scoreValues\"\n },\n \"id\": \"3\",\n \"organization\": null\n },\n {\n \"cdate\": \"2018-09-19T23:11:11-05:00\",\n \"email\": \"tjahn+test@activecampaign.com\",\n \"phone\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"orgid\": \"0\",\n \"segmentio_id\": \"\",\n \"bounced_hard\": \"0\",\n \"bounced_soft\": \"0\",\n \"bounced_date\": \"0000-00-00\",\n \"ip\": \"0\",\n \"ua\": \"\",\n \"hash\": \"853be08a2387ac13ca51dee72e586e9c\",\n \"socialdata_lastcheck\": \"0000-00-00 00:00:00\",\n \"email_local\": \"\",\n \"email_domain\": \"\",\n \"sentcnt\": \"0\",\n \"rating_tstamp\": \"0000-00-00\",\n \"gravatar\": \"0\",\n \"deleted\": \"0\",\n \"anonymized\": \"0\",\n \"adate\": \"2018-09-19T23:24:43-05:00\",\n \"udate\": \"2018-09-19T23:11:11-05:00\",\n \"deleted_at\": \"0000-00-00 00:00:00\",\n \"scoreValues\": [],\n \"links\": {\n \"bounceLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/bounceLogs\",\n \"contactAutomations\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/contactAutomations\",\n \"contactData\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/contactData\",\n \"contactGoals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/contactGoals\",\n \"contactLists\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/contactLists\",\n \"contactLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/contactLogs\",\n \"contactTags\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/contactTags\",\n \"contactDeals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/contactDeals\",\n \"deals\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/deals\",\n \"fieldValues\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/fieldValues\",\n \"geoIps\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/geoIps\",\n \"notes\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/notes\",\n \"organization\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/organization\",\n \"plusAppend\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/plusAppend\",\n \"trackingLogs\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/trackingLogs\",\n \"scoreValues\": \"https://test-enterprise-13.staging.listfly.com/api/3/contacts/7/scoreValues\"\n },\n \"id\": \"7\",\n \"organization\": null\n }\n ],\n \"meta\": {\n \"total\": \"6\",\n \"page_input\": {\n \"segmentid\": 0,\n \"formid\": 0,\n \"listid\": 0,\n \"tagid\": 0,\n \"limit\": 20,\n \"offset\": 0,\n \"search\": null,\n \"sort\": null,\n \"seriesid\": 0,\n \"waitid\": 0,\n \"status\": -1,\n \"forceQuery\": 0,\n \"cacheid\": \"522b5224f2007dca7483e08e7ebf5005\"\n }\n }\n}" schema: oneOf: - type: object properties: contacts: type: array items: type: object properties: cdate: type: string example: '2017-01-25T23:58:14-06:00' email: type: string example: janedoe@example.com phone: type: string example: '3120000000' firstName: type: string example: John lastName: type: string example: Doe orgid: type: string example: '0' segmentio_id: type: string example: '' bounced_hard: type: string example: '0' bounced_soft: type: string example: '0' bounced_date: type: string example: '0000-00-00' ip: type: string example: '0' ua: type: string example: '' hash: type: string example: 31e076c964f4262817f9ba302c96e1c6 socialdata_lastcheck: type: string example: '0000-00-00 00:00:00' email_local: type: string example: '' email_domain: type: string example: '' sentcnt: type: string example: '0' rating_tstamp: type: string example: '0000-00-00' gravatar: type: string example: '3' deleted: type: string example: '0' adate: type: string example: '2017-02-22 15:26:24' udate: type: string example: '2017-01-25T23:58:14-06:00' edate: type: string example: '2017-01-27 14:44:13' scoreValues: type: array links: type: object properties: bounceLogs: type: string example: https://:account.api-us1.com/api/:version/contacts/68/bounceLogs contactAutomations: type: string example: https://:account.api-us1.com/api/:version/contacts/68/contactAutomations contactData: type: string example: https://:account.api-us1.com/api/:version/contacts/68/contactData contactGoals: type: string example: https://:account.api-us1.com/api/:version/contacts/68/contactGoals contactLists: type: string example: https://:account.api-us1.com/api/:version/contacts/68/contactLists contactLogs: type: string example: https://:account.api-us1.com/api/:version/contacts/68/contactLogs contactTags: type: string example: https://:account.api-us1.com/api/:version/contacts/68/contactTags contactDeals: type: string example: https://:account.api-us1.com/api/:version/contacts/68/contactDeals deals: type: string example: https://:account.api-us1.com/api/:version/contacts/68/deals fieldValues: type: string example: https://:account.api-us1.com/api/:version/contacts/68/fieldValues geoIps: type: string example: https://:account.api-us1.com/api/:version/contacts/68/geoIps notes: type: string example: https://:account.api-us1.com/api/:version/contacts/68/notes organization: type: string example: https://:account.api-us1.com/api/:version/contacts/68/organization plusAppend: type: string example: https://:account.api-us1.com/api/:version/contacts/68/plusAppend trackingLogs: type: string example: https://:account.api-us1.com/api/:version/contacts/68/trackingLogs scoreValues: type: string example: https://:account.api-us1.com/api/:version/contacts/68/scoreValues id: type: string example: '68' organization: {} meta: type: object properties: total: type: string example: '2' page_input: type: object properties: segmentid: {} formid: type: integer example: 0 default: 0 listid: type: integer example: 0 default: 0 tagid: type: integer example: 0 default: 0 limit: type: integer example: 20 default: 0 offset: type: integer example: 0 default: 0 search: {} sort: {} seriesid: type: integer example: 0 default: 0 waitid: type: integer example: 0 default: 0 status: type: integer example: -1 default: 0 forceQuery: type: integer example: 0 default: 0 cacheid: type: string example: 895202850f4ca4144513c0962812f951 - type: object properties: scoreValues: type: array contacts: type: array items: type: object properties: cdate: type: string example: '2018-09-12T16:53:50-05:00' email: type: string example: adam@activecampaign.com phone: type: string example: '' firstName: type: string example: '' lastName: type: string example: '' orgid: type: string example: '0' segmentio_id: type: string example: '' bounced_hard: type: string example: '0' bounced_soft: type: string example: '0' bounced_date: type: string example: '0000-00-00' ip: type: string example: '0' ua: type: string example: '' hash: type: string example: 0d9c41ae7a4de516313673e2341f6003 socialdata_lastcheck: type: string example: '0000-00-00 00:00:00' email_local: type: string example: '' email_domain: type: string example: '' sentcnt: type: string example: '0' rating_tstamp: type: string example: '0000-00-00' gravatar: type: string example: '1' deleted: type: string example: '0' anonymized: type: string example: '0' udate: type: string example: '2018-09-12T17:00:00-05:00' deleted_at: type: string example: '0000-00-00 00:00:00' scoreValues: type: array links: type: object properties: bounceLogs: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/bounceLogs contactAutomations: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/contactAutomations contactData: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/contactData contactGoals: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/contactGoals contactLists: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/contactLists contactLogs: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/contactLogs contactTags: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/contactTags contactDeals: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/contactDeals deals: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/deals fieldValues: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/fieldValues geoIps: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/geoIps notes: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/notes organization: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/organization plusAppend: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/plusAppend trackingLogs: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/trackingLogs scoreValues: type: string example: https://test-enterprise-13.staging.listfly.com/api/3/contacts/5/scoreValues id: type: string example: '5' organization: {} meta: type: object properties: total: type: string example: '6' page_input: type: object properties: segmentid: type: integer example: 0 default: 0 formid: type: integer example: 0 default: 0 listid: type: integer example: 0 default: 0 tagid: type: integer example: 0 default: 0 limit: type: integer example: 20 default: 0 offset: type: integer example: 0 default: 0 search: {} sort: {} seriesid: type: integer example: 0 default: 0 waitid: type: integer example: 0 default: 0 status: type: integer example: -1 default: 0 forceQuery: type: integer example: 0 default: 0 cacheid: type: string example: 522b5224f2007dca7483e08e7ebf5005 '400': description: '400' content: application/json: examples: Result: value: '{}' schema: type: object properties: {} deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contact/sync: post: summary: ActiveCampaign Sync a Contact's Data description: '' operationId: sync-a-contacts-data requestBody: content: application/json: schema: type: object properties: contact: properties: email: type: string description: Email address of the contact to sync firstName: type: string lastName: type: string phone: type: string fieldValues: type: array description: Contact's custom field values [{field, value}] orgid: type: integer description: (Deprecated) Please use Account-Contact end points format: int32 deleted: type: boolean description: (Deprecated) Please use the DELETE endpoint required: - email type: object examples: Request Example: value: contact: email: jondoe@example.com firstName: John lastName: Doe phone: '7223224241' fieldValues: - field: '1' value: The Value for First Field - field: '6' value: '2008-01-20' responses: '201': description: '201' content: application/json: examples: Result: value: "{\n \"fieldValues\": [\n {\n \"contact\": \"10\",\n \"field\": \"2\",\n \"value\": \"Albany\",\n \"cdate\": \"2022-04-14T10:03:23-05:00\",\n \"udate\": \"2022-04-14T10:03:23-05:00\",\n \"created_by\": null,\n \"updated_by\": null,\n \"links\": {\n \"owner\": \"https://:account.api-us1.com/api/3/fieldValues/14/owner\",\n \"field\": \"https://:account.api-us1.com/api/3/fieldValues/14/field\"\n },\n \"id\": \"14\",\n \"owner\": \"10\"\n },\n {\n \"contact\": \"10\",\n \"field\": \"3\",\n \"value\": \"Georgia\",\n \"cdate\": \"2022-04-14T10:03:23-05:00\",\n \"udate\": \"2022-04-14T10:03:23-05:00\",\n \"created_by\": null,\n \"updated_by\": null,\n \"links\": {\n \"owner\": \"https://:account.api-us1.com/api/3/fieldValues/15/owner\",\n \"field\": \"https://:account.api-us1.com/api/3/fieldValues/15/field\"\n },\n \"id\": \"15\",\n \"owner\": \"10\"\n }\n ],\n \"contact\": {\n \"email\": \"johndoe@example.com\",\n \"phone\": \"7223224241\",\n \"firstName\": \"John\",\n \"lastName\": \"Doe\",\n \"email_empty\": false,\n \"cdate\": \"2022-04-14T10:03:23-05:00\",\n \"udate\": \"2022-04-14T10:03:23-05:00\",\n \"orgid\": \"\",\n \"orgname\": \"\",\n \"links\": {\n \"bounceLogs\": \"https://:account.api-us1.com/api/3/contacts/10/bounceLogs\",\n \"contactAutomations\": \"https://:account.api-us1.com/api/3/contacts/10/contactAutomations?limit=1000&orders%5Blastdate%5D=DESC\",\n \"contactData\": \"https://:account.api-us1.com/api/3/contacts/10/contactData\",\n \"contactGoals\": \"https://:account.api-us1.com/api/3/contacts/10/contactGoals\",\n \"contactLists\": \"https://:account.api-us1.com/api/3/contacts/10/contactLists\",\n \"contactLogs\": \"https://:account.api-us1.com/api/3/contacts/10/contactLogs\",\n \"contactTags\": \"https://:account.api-us1.com/api/3/contacts/10/contactTags\",\n \"contactDeals\": \"https://:account.api-us1.com/api/3/contacts/10/contactDeals\",\n \"deals\": \"https://:account.api-us1.com/api/3/contacts/10/deals\",\n \"fieldValues\": \"https://:account.api-us1.com/api/3/contacts/10/fieldValues\",\n \"geoIps\": \"https://:account.api-us1.com/api/3/contacts/10/geoIps\",\n \"notes\": \"https://:account.api-us1.com/api/3/contacts/10/notes\",\n \"organization\": \"https://:account.api-us1.com/api/3/contacts/10/organization\",\n \"plusAppend\": \"https://:account.api-us1.com/api/3/contacts/10/plusAppend\",\n \"trackingLogs\": \"https://:account.api-us1.com/api/3/contacts/10/trackingLogs\",\n \"scoreValues\": \"https://:account.api-us1.com/api/3/contacts/10/scoreValues\",\n \"accountContacts\": \"https://:account.api-us1.com/api/3/contacts/10/accountContacts\",\n \"automationEntryCounts\": \"https://:account.api-us1.com/api/3/contacts/10/automationEntryCounts\"\n },\n \"hash\": \"75b8163f768dff1f0f7b5f69476b986a\",\n \"fieldValues\": [\n \"14\",\n \"15\"\n ],\n \"id\": \"10\",\n \"organization\": \"\"\n }\n}" schema: type: object properties: fieldValues: type: array items: type: object properties: contact: type: string example: '10' field: type: string example: '2' value: type: string example: Albany cdate: type: string example: '2022-04-14T10:03:23-05:00' udate: type: string example: '2022-04-14T10:03:23-05:00' created_by: {} updated_by: {} links: type: object properties: owner: type: string example: https://:account.api-us1.com/api/3/fieldValues/14/owner field: type: string example: https://:account.api-us1.com/api/3/fieldValues/14/field id: type: string example: '14' owner: type: string example: '10' contact: type: object properties: email: type: string example: johndoe@example.com phone: type: string example: '7223224241' firstName: type: string example: John lastName: type: string example: Doe email_empty: type: boolean example: false default: true cdate: type: string example: '2022-04-14T10:03:23-05:00' udate: type: string example: '2022-04-14T10:03:23-05:00' orgid: type: string example: '' orgname: type: string example: '' links: type: object properties: bounceLogs: type: string example: https://:account.api-us1.com/api/3/contacts/10/bounceLogs contactAutomations: type: string example: https://:account.api-us1.com/api/3/contacts/10/contactAutomations?limit=1000&orders%5Blastdate%5D=DESC contactData: type: string example: https://:account.api-us1.com/api/3/contacts/10/contactData contactGoals: type: string example: https://:account.api-us1.com/api/3/contacts/10/contactGoals contactLists: type: string example: https://:account.api-us1.com/api/3/contacts/10/contactLists contactLogs: type: string example: https://:account.api-us1.com/api/3/contacts/10/contactLogs contactTags: type: string example: https://:account.api-us1.com/api/3/contacts/10/contactTags contactDeals: type: string example: https://:account.api-us1.com/api/3/contacts/10/contactDeals deals: type: string example: https://:account.api-us1.com/api/3/contacts/10/deals fieldValues: type: string example: https://:account.api-us1.com/api/3/contacts/10/fieldValues geoIps: type: string example: https://:account.api-us1.com/api/3/contacts/10/geoIps notes: type: string example: https://:account.api-us1.com/api/3/contacts/10/notes organization: type: string example: https://:account.api-us1.com/api/3/contacts/10/organization plusAppend: type: string example: https://:account.api-us1.com/api/3/contacts/10/plusAppend trackingLogs: type: string example: https://:account.api-us1.com/api/3/contacts/10/trackingLogs scoreValues: type: string example: https://:account.api-us1.com/api/3/contacts/10/scoreValues accountContacts: type: string example: https://:account.api-us1.com/api/3/contacts/10/accountContacts automationEntryCounts: type: string example: https://:account.api-us1.com/api/3/contacts/10/automationEntryCounts hash: type: string example: 75b8163f768dff1f0f7b5f69476b986a fieldValues: type: array items: type: string example: '14' id: type: string example: '10' organization: type: string example: '' '400': description: '400' content: application/json: examples: Result: value: '{}' schema: type: object properties: {} deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}: get: summary: ActiveCampaign Retrieve a Contact description: Retrieve an existing contact operationId: get-contact parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"contactAutomations\": [\n {\n \"contact\": \"1\",\n \"seriesid\": \"1\",\n \"startid\": \"0\",\n \"status\": \"0\",\n \"adddate\": \"1976-10-16T23:23:09-05:00\",\n \"remdate\": null,\n \"timespan\": null,\n \"lastblock\": \"0\",\n \"lastdate\": \"1984-08-15T08:13:44-05:00\",\n \"completedElements\": \"0\",\n \"totalElements\": \"0\",\n \"completed\": 0,\n \"completeValue\": 100,\n \"links\": {\n \"automation\": \"https://:account.api-us1.com/api/:version/contactAutomations/1/automation\",\n \"contact\": \"https://:account.api-us1.com/api/:version/contactAutomations/1/contact\",\n \"contactGoals\": \"https://:account.api-us1.com/api/:version/contactAutomations/1/contactGoals\"\n },\n \"id\": \"1\",\n \"automation\": \"1\"\n }\n ],\n \"contactLists\": [\n {\n \"contact\": \"1\",\n \"list\": \"1\",\n \"form\": null,\n \"seriesid\": \"0\",\n \"sdate\": null,\n \"udate\": null,\n \"status\": \"1\",\n \"responder\": \"1\",\n \"sync\": \"0\",\n \"unsubreason\": null,\n \"campaign\": null,\n \"message\": null,\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"ip4Sub\": \"0\",\n \"sourceid\": \"0\",\n \"autosyncLog\": null,\n \"ip4_last\": \"0\",\n \"ip4Unsub\": \"0\",\n \"unsubscribeAutomation\": null,\n \"links\": {\n \"automation\": \"https://:account.api-us1.com/api/:version/contactLists/1/automation\",\n \"list\": \"https://:account.api-us1.com/api/:version/contactLists/1/list\",\n \"contact\": \"https://:account.api-us1.com/api/:version/contactLists/1/contact\",\n \"form\": \"https://:account.api-us1.com/api/:version/contactLists/1/form\",\n \"autosyncLog\": \"https://:account.api-us1.com/api/:version/contactLists/1/autosyncLog\",\n \"campaign\": \"https://:account.api-us1.com/api/:version/contactLists/1/campaign\",\n \"unsubscribeAutomation\": \"https://:account.api-us1.com/api/:version/contactLists/1/unsubscribeAutomation\",\n \"message\": \"https://:account.api-us1.com/api/:version/contactLists/1/message\"\n },\n \"id\": \"1\",\n \"automation\": null\n }\n ],\n \"deals\": [\n {\n \"owner\": \"1\",\n \"contact\": \"1\",\n \"organization\": null,\n \"group\": null,\n \"title\": \"Consectetur omnis quo inventore molestiae ratione amet.\",\n \"nexttaskid\": \"0\",\n \"currency\": \"USD\",\n \"status\": \"0\",\n \"links\": {\n \"activities\": \"https://:account.api-us1.com/api/:version/deals/1/activities\",\n \"contact\": \"https://:account.api-us1.com/api/:version/deals/1/contact\",\n \"contactDeals\": \"https://:account.api-us1.com/api/:version/deals/1/contactDeals\",\n \"group\": \"https://:account.api-us1.com/api/:version/deals/1/group\",\n \"nextTask\": \"https://:account.api-us1.com/api/:version/deals/1/nextTask\",\n \"notes\": \"https://:account.api-us1.com/api/:version/deals/1/notes\",\n \"organization\": \"https://:account.api-us1.com/api/:version/deals/1/organization\",\n \"owner\": \"https://:account.api-us1.com/api/:version/deals/1/owner\",\n \"scoreValues\": \"https://:account.api-us1.com/api/:version/deals/1/scoreValues\",\n \"stage\": \"https://:account.api-us1.com/api/:version/deals/1/stage\",\n \"tasks\": \"https://:account.api-us1.com/api/:version/deals/1/tasks\"\n },\n \"id\": \"1\",\n \"nextTask\": null\n }\n ],\n \"fieldValues\": [\n {\n \"contact\": \"1\",\n \"field\": \"1\",\n \"value\": null,\n \"cdate\": \"1981-05-16T19:02:29-05:00\",\n \"udate\": \"1975-11-08T10:31:45-06:00\",\n \"links\": {\n \"owner\": \"https://:account.api-us1.com/api/:version/fieldValues/1/owner\",\n \"field\": \"https://:account.api-us1.com/api/:version/fieldValues/1/field\"\n },\n \"id\": \"1\",\n \"owner\": \"1\"\n }\n ],\n \"geoAddresses\": [\n {\n \"ip4\": \"823\",\n \"country2\": \"AS\",\n \"country\": \"Suriname\",\n \"state\": \"KY\",\n \"city\": \"North Arnoldomouth\",\n \"zip\": \"38704-6592\",\n \"area\": \"0\",\n \"lat\": \"-70.160407\",\n \"lon\": \"-102.229406\",\n \"tz\": \"Europe/Chisinau\",\n \"tstamp\": \"1972-03-16T07:26:58-06:00\",\n \"links\": [\n \n ],\n \"id\": \"1\"\n }\n ],\n \"geoIps\": [\n {\n \"contact\": \"1\",\n \"campaignid\": \"1\",\n \"messageid\": \"1\",\n \"geoaddrid\": \"1\",\n \"ip4\": \"0\",\n \"tstamp\": \"1988-08-05T11:50:51-05:00\",\n \"geoAddress\": \"1\",\n \"links\": {\n \"geoAddress\": \"https://:account.api-us1.com/api/:version/geoIps/1/geoAddress\"\n },\n \"id\": \"1\"\n }\n ],\n \"contact\": {\n \"cdate\": \"2007-05-05T12:49:09-05:00\",\n \"email\": \"selmer.koss@example.com\",\n \"phone\": \"\",\n \"firstName\": \"Charles\",\n \"lastName\": \"Reynolds\",\n \"orgid\": \"0\",\n \"segmentio_id\": \"\",\n \"bounced_hard\": \"0\",\n \"bounced_soft\": \"0\",\n \"bounced_date\": null,\n \"ip\": \"0\",\n \"ua\": null,\n \"hash\": \"\",\n \"socialdata_lastcheck\": null,\n \"email_local\": \"\",\n \"email_domain\": \"\",\n \"sentcnt\": \"0\",\n \"rating_tstamp\": null,\n \"gravatar\": \"0\",\n \"deleted\": \"0\",\n \"adate\": null,\n \"udate\": null,\n \"edate\": null,\n \"contactAutomations\": [\n \"1\"\n ],\n \"contactLists\": [\n \"1\"\n ],\n \"fieldValues\": [\n \"1\"\n ],\n \"geoIps\": [\n \"1\"\n ],\n \"deals\": [\n \"1\"\n ],\n \"accountContacts\": [\n \"1\"\n ],\n \"links\": {\n \"bounceLogs\": \"/1/bounceLogs\",\n \"contactAutomations\": \"/1/contactAutomations\",\n \"contactData\": \"/1/contactData\",\n \"contactGoals\": \"/1/contactGoals\",\n \"contactLists\": \"/1/contactLists\",\n \"contactLogs\": \"/1/contactLogs\",\n \"contactTags\": \"/1/contactTags\",\n \"contactDeals\": \"/1/contactDeals\",\n \"deals\": \"/1/deals\",\n \"fieldValues\": \"/1/fieldValues\",\n \"geoIps\": \"/1/geoIps\",\n \"notes\": \"/1/notes\",\n \"organization\": \"/1/organization\",\n \"plusAppend\": \"/1/plusAppend\",\n \"trackingLogs\": \"/1/trackingLogs\",\n \"scoreValues\": \"/1/scoreValues\"\n },\n \"id\": \"1\",\n \"organization\": null\n }\n}" schema: type: object properties: contactAutomations: type: array items: type: object properties: contact: type: string example: '1' seriesid: type: string example: '1' startid: type: string example: '0' status: type: string example: '0' adddate: type: string example: '1976-10-16T23:23:09-05:00' remdate: {} timespan: {} lastblock: type: string example: '0' lastdate: type: string example: '1984-08-15T08:13:44-05:00' completedElements: type: string example: '0' totalElements: type: string example: '0' completed: type: integer example: 0 default: 0 completeValue: type: integer example: 100 default: 0 links: type: object properties: automation: type: string example: https://:account.api-us1.com/api/:version/contactAutomations/1/automation contact: type: string example: https://:account.api-us1.com/api/:version/contactAutomations/1/contact contactGoals: type: string example: https://:account.api-us1.com/api/:version/contactAutomations/1/contactGoals id: type: string example: '1' automation: type: string example: '1' contactLists: type: array items: type: object properties: contact: type: string example: '1' list: type: string example: '1' form: {} seriesid: type: string example: '0' sdate: {} udate: {} status: type: string example: '1' responder: type: string example: '1' sync: type: string example: '0' unsubreason: {} campaign: {} message: {} first_name: type: string example: John last_name: type: string example: Doe ip4Sub: type: string example: '0' sourceid: type: string example: '0' autosyncLog: {} ip4_last: type: string example: '0' ip4Unsub: type: string example: '0' unsubscribeAutomation: {} links: type: object properties: automation: type: string example: https://:account.api-us1.com/api/:version/contactLists/1/automation list: type: string example: https://:account.api-us1.com/api/:version/contactLists/1/list contact: type: string example: https://:account.api-us1.com/api/:version/contactLists/1/contact form: type: string example: https://:account.api-us1.com/api/:version/contactLists/1/form autosyncLog: type: string example: https://:account.api-us1.com/api/:version/contactLists/1/autosyncLog campaign: type: string example: https://:account.api-us1.com/api/:version/contactLists/1/campaign unsubscribeAutomation: type: string example: https://:account.api-us1.com/api/:version/contactLists/1/unsubscribeAutomation message: type: string example: https://:account.api-us1.com/api/:version/contactLists/1/message id: type: string example: '1' automation: {} deals: type: array items: type: object properties: owner: type: string example: '1' contact: type: string example: '1' organization: {} group: {} title: type: string example: Consectetur omnis quo inventore molestiae ratione amet. nexttaskid: type: string example: '0' currency: type: string example: USD status: type: string example: '0' links: type: object properties: activities: type: string example: https://:account.api-us1.com/api/:version/deals/1/activities contact: type: string example: https://:account.api-us1.com/api/:version/deals/1/contact contactDeals: type: string example: https://:account.api-us1.com/api/:version/deals/1/contactDeals group: type: string example: https://:account.api-us1.com/api/:version/deals/1/group nextTask: type: string example: https://:account.api-us1.com/api/:version/deals/1/nextTask notes: type: string example: https://:account.api-us1.com/api/:version/deals/1/notes organization: type: string example: https://:account.api-us1.com/api/:version/deals/1/organization owner: type: string example: https://:account.api-us1.com/api/:version/deals/1/owner scoreValues: type: string example: https://:account.api-us1.com/api/:version/deals/1/scoreValues stage: type: string example: https://:account.api-us1.com/api/:version/deals/1/stage tasks: type: string example: https://:account.api-us1.com/api/:version/deals/1/tasks id: type: string example: '1' nextTask: {} fieldValues: type: array items: type: object properties: contact: type: string example: '1' field: type: string example: '1' value: {} cdate: type: string example: '1981-05-16T19:02:29-05:00' udate: type: string example: '1975-11-08T10:31:45-06:00' links: type: object properties: owner: type: string example: https://:account.api-us1.com/api/:version/fieldValues/1/owner field: type: string example: https://:account.api-us1.com/api/:version/fieldValues/1/field id: type: string example: '1' owner: type: string example: '1' geoAddresses: type: array items: type: object properties: ip4: type: string example: '823' country2: type: string example: AS country: type: string example: Suriname state: type: string example: KY city: type: string example: North Arnoldomouth zip: type: string example: 38704-6592 area: type: string example: '0' lat: type: string example: '-70.160407' lon: type: string example: '-102.229406' tz: type: string example: Europe/Chisinau tstamp: type: string example: '1972-03-16T07:26:58-06:00' links: type: array id: type: string example: '1' geoIps: type: array items: type: object properties: contact: type: string example: '1' campaignid: type: string example: '1' messageid: type: string example: '1' geoaddrid: type: string example: '1' ip4: type: string example: '0' tstamp: type: string example: '1988-08-05T11:50:51-05:00' geoAddress: type: string example: '1' links: type: object properties: geoAddress: type: string example: https://:account.api-us1.com/api/:version/geoIps/1/geoAddress id: type: string example: '1' contact: type: object properties: cdate: type: string example: '2007-05-05T12:49:09-05:00' email: type: string example: selmer.koss@example.com phone: type: string example: '' firstName: type: string example: Charles lastName: type: string example: Reynolds orgid: type: string example: '0' segmentio_id: type: string example: '' bounced_hard: type: string example: '0' bounced_soft: type: string example: '0' bounced_date: {} ip: type: string example: '0' ua: {} hash: type: string example: '' socialdata_lastcheck: {} email_local: type: string example: '' email_domain: type: string example: '' sentcnt: type: string example: '0' rating_tstamp: {} gravatar: type: string example: '0' deleted: type: string example: '0' adate: {} udate: {} edate: {} contactAutomations: type: array items: type: string example: '1' contactLists: type: array items: type: string example: '1' fieldValues: type: array items: type: string example: '1' geoIps: type: array items: type: string example: '1' deals: type: array items: type: string example: '1' accountContacts: type: array items: type: string example: '1' links: type: object properties: bounceLogs: type: string example: /1/bounceLogs contactAutomations: type: string example: /1/contactAutomations contactData: type: string example: /1/contactData contactGoals: type: string example: /1/contactGoals contactLists: type: string example: /1/contactLists contactLogs: type: string example: /1/contactLogs contactTags: type: string example: /1/contactTags contactDeals: type: string example: /1/contactDeals deals: type: string example: /1/deals fieldValues: type: string example: /1/fieldValues geoIps: type: string example: /1/geoIps notes: type: string example: /1/notes organization: type: string example: /1/organization plusAppend: type: string example: /1/plusAppend trackingLogs: type: string example: /1/trackingLogs scoreValues: type: string example: /1/scoreValues id: type: string example: '1' organization: {} '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\":\"No Result found for Subscriber with id 1\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 1 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK put: summary: ActiveCampaign Update a Contact description: '' operationId: update-a-contact-new parameters: - name: id in: path description: ID of the contact to update schema: type: integer format: int32 required: true requestBody: content: application/json: schema: type: object properties: contact: properties: email: type: string description: Contact's email address firstName: type: string description: Contact's first name lastName: type: string description: Contact's last name phone: type: string description: Contact's phone number fieldValues: type: array description: Contact's custom field values [{field, value}] deleted: type: boolean description: (Deprecated) Please use the the Delete endpoint orgid: type: integer description: (Deprecated) Please use Account-Contact end points format: int32 required: [] type: object examples: Request Example: value: contact: email: johndoe@example.com firstName: John lastName: Doe fieldValues: - field: '1' value: The Value for First Field - field: '6' value: '2008-01-20' responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"fieldValues\": [\n {\n \"contact\": \"113\",\n \"field\": \"1\",\n \"value\": \"The Value for First Field\",\n \"cdate\": \"2020-08-01T10:54:59-05:00\",\n \"udate\": \"2020-08-01T14:13:34-05:00\",\n \"links\": {\n \"owner\": \"https://:account.api-us1.com/api/3/fieldValues/11797/owner\",\n \"field\": \"https://:account.api-us1.com/api/3/fieldValues/11797/field\"\n },\n \"id\": \"11797\",\n \"owner\": \"113\"\n },\n {\n \"contact\": \"113\",\n \"field\": \"6\",\n \"value\": \"2008-01-20\",\n \"cdate\": \"2020-08-01T10:54:59-05:00\",\n \"udate\": \"2020-08-01T14:13:34-05:00\",\n \"links\": {\n \"owner\": \"https://:account.api-us1.com/api/3/fieldValues/11798/owner\",\n \"field\": \"https://:account.api-us1.com/api/3/fieldValues/11798/field\"\n },\n \"id\": \"11798\",\n \"owner\": \"113\"\n }\n ],\n \"contact\": {\n \"cdate\": \"2018-09-28T13:50:41-05:00\",\n \"email\": \"johndoe@example.com\",\n \"phone\": \"\",\n \"firstName\": \"John\",\n \"lastName\": \"Doe\",\n \"orgid\": \"0\",\n \"segmentio_id\": \"\",\n \"bounced_hard\": \"0\",\n \"bounced_soft\": \"0\",\n \"bounced_date\": null,\n \"ip\": \"0\",\n \"ua\": null,\n \"hash\": \"8309146b50af1ed5f9cb40c7465a0315\",\n \"socialdata_lastcheck\": null,\n \"email_local\": \"\",\n \"email_domain\": \"\",\n \"sentcnt\": \"0\",\n \"rating_tstamp\": null,\n \"gravatar\": \"0\",\n \"deleted\": \"0\",\n \"anonymized\": \"0\",\n \"adate\": null,\n \"udate\": \"2018-09-28T13:55:59-05:00\",\n \"edate\": null,\n \"deleted_at\": null,\n \"created_utc_timestamp\": \"2018-09-28 13:50:41\",\n \"updated_utc_timestamp\": \"2018-09-28 13:50:41\",\n \"links\": {\n \"bounceLogs\": \"https://:account.api-us1.com/api/:version/contacts/113/bounceLogs\",\n \"contactAutomations\": \"https://:account.api-us1.com/api/:version/contacts/113/contactAutomations\",\n \"contactData\": \"https://:account.api-us1.com/api/:version/contacts/113/contactData\",\n \"contactGoals\": \"https://:account.api-us1.com/api/:version/contacts/113/contactGoals\",\n \"contactLists\": \"https://:account.api-us1.com/api/:version/contacts/113/contactLists\",\n \"contactLogs\": \"https://:account.api-us1.com/api/:version/contacts/113/contactLogs\",\n \"contactTags\": \"https://:account.api-us1.com/api/:version/contacts/113/contactTags\",\n \"contactDeals\": \"https://:account.api-us1.com/api/:version/contacts/113/contactDeals\",\n \"deals\": \"https://:account.api-us1.com/api/:version/contacts/113/deals\",\n \"fieldValues\": \"https://:account.api-us1.com/api/:version/contacts/113/fieldValues\",\n \"geoIps\": \"https://:account.api-us1.com/api/:version/contacts/113/geoIps\",\n \"notes\": \"https://:account.api-us1.com/api/:version/contacts/113/notes\",\n \"organization\": \"https://:account.api-us1.com/api/:version/contacts/113/organization\",\n \"plusAppend\": \"https://:account.api-us1.com/api/:version/contacts/113/plusAppend\",\n \"trackingLogs\": \"https://:account.api-us1.com/api/:version/contacts/113/trackingLogs\",\n \"scoreValues\": \"https://:account.api-us1.com/api/:version/contacts/113/scoreValues\"\n },\n \"id\": \"113\",\n \"organization\": null\n }\n}" schema: type: object properties: fieldValues: type: array items: type: object properties: contact: type: string example: '113' field: type: string example: '1' value: type: string example: The Value for First Field cdate: type: string example: '2020-08-01T10:54:59-05:00' udate: type: string example: '2020-08-01T14:13:34-05:00' links: type: object properties: owner: type: string example: https://:account.api-us1.com/api/3/fieldValues/11797/owner field: type: string example: https://:account.api-us1.com/api/3/fieldValues/11797/field id: type: string example: '11797' owner: type: string example: '113' contact: type: object properties: cdate: type: string example: '2018-09-28T13:50:41-05:00' email: type: string example: johndoe@example.com phone: type: string example: '' firstName: type: string example: John lastName: type: string example: Doe orgid: type: string example: '0' segmentio_id: type: string example: '' bounced_hard: type: string example: '0' bounced_soft: type: string example: '0' bounced_date: {} ip: type: string example: '0' ua: {} hash: type: string example: 8309146b50af1ed5f9cb40c7465a0315 socialdata_lastcheck: {} email_local: type: string example: '' email_domain: type: string example: '' sentcnt: type: string example: '0' rating_tstamp: {} gravatar: type: string example: '0' deleted: type: string example: '0' anonymized: type: string example: '0' adate: {} udate: type: string example: '2018-09-28T13:55:59-05:00' edate: {} deleted_at: {} created_utc_timestamp: type: string example: '2018-09-28 13:50:41' updated_utc_timestamp: type: string example: '2018-09-28 13:50:41' links: type: object properties: bounceLogs: type: string example: https://:account.api-us1.com/api/:version/contacts/113/bounceLogs contactAutomations: type: string example: https://:account.api-us1.com/api/:version/contacts/113/contactAutomations contactData: type: string example: https://:account.api-us1.com/api/:version/contacts/113/contactData contactGoals: type: string example: https://:account.api-us1.com/api/:version/contacts/113/contactGoals contactLists: type: string example: https://:account.api-us1.com/api/:version/contacts/113/contactLists contactLogs: type: string example: https://:account.api-us1.com/api/:version/contacts/113/contactLogs contactTags: type: string example: https://:account.api-us1.com/api/:version/contacts/113/contactTags contactDeals: type: string example: https://:account.api-us1.com/api/:version/contacts/113/contactDeals deals: type: string example: https://:account.api-us1.com/api/:version/contacts/113/deals fieldValues: type: string example: https://:account.api-us1.com/api/:version/contacts/113/fieldValues geoIps: type: string example: https://:account.api-us1.com/api/:version/contacts/113/geoIps notes: type: string example: https://:account.api-us1.com/api/:version/contacts/113/notes organization: type: string example: https://:account.api-us1.com/api/:version/contacts/113/organization plusAppend: type: string example: https://:account.api-us1.com/api/:version/contacts/113/plusAppend trackingLogs: type: string example: https://:account.api-us1.com/api/:version/contacts/113/trackingLogs scoreValues: type: string example: https://:account.api-us1.com/api/:version/contacts/113/scoreValues id: type: string example: '113' organization: {} '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 1\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 1 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: summary: ActiveCampaign Delete a Contact description: Delete an existing contact operationId: delete-contact parameters: - name: id in: path description: The contact id schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: '{}' schema: type: object properties: {} '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\":\"No result found for contact with id 1\"\n}" schema: type: object properties: message: type: string example: No result found for contact with id 1 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contactLists: post: summary: ActiveCampaign Update List Status for a Contact description: Subscribe a contact to a list or unsubscribe a contact from a list. operationId: update-list-status-for-contact requestBody: content: application/json: schema: type: object properties: contactList: properties: list: type: string description: ID of the list to subscribe the contact to contact: type: string description: ID of the contact to subscribe to the list status: type: string description: 'Set to "1" to subscribe the contact to the list. Set to "2" to unsubscribe the contact from the list. WARNING: If you change a status from unsubscribed to active, you can re-subscribe a contact to a list from which they had manually unsubscribed.' sourceid: type: integer description: Set to "4" when re-subscribing a contact to a list default: 0 format: int32 required: - list - contact - status type: object examples: Request Example: value: contactList: list: 2 contact: 1 status: 1 responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"contacts\": [\n {\n \"cdate\": \"2017-07-24T12:09:52-05:00\",\n \"email\": \"johndoe@example.com\",\n \"phone\": \"\",\n \"firstName\": \"John\",\n \"lastName\": \"Doe\",\n \"orgid\": \"0\",\n \"segmentio_id\": \"\",\n \"bounced_hard\": \"0\",\n \"bounced_soft\": \"0\",\n \"bounced_date\": \"0000-00-00\",\n \"ip\": \"0\",\n \"ua\": \"\",\n \"hash\": \"1234567890\",\n \"socialdata_lastcheck\": \"0000-00-00 00:00:00\",\n \"email_local\": \"\",\n \"email_domain\": \"\",\n \"sentcnt\": \"1\",\n \"rating_tstamp\": \"0000-00-00\",\n \"gravatar\": \"0\",\n \"deleted\": \"0\",\n \"anonymized\": \"0\",\n \"adate\": \"2018-10-16T13:52:32-05:00\",\n \"udate\": \"2018-10-16T13:50:18-05:00\",\n \"deleted_at\": \"0000-00-00 00:00:00\",\n \"created_utc_timestamp\": \"2018-10-01 08:40:10\",\n \"updated_utc_timestamp\": \"2018-10-16 13:50:18\",\n \"links\": {\n \"bounceLogs\": \"https://:account.api-us1.com/api/:version/contacts/1/bounceLogs\",\n \"contactAutomations\": \"https://:account.api-us1.com/api/:version/contacts/1/contactAutomations\",\n \"contactData\": \"https://:account.api-us1.com/api/:version/contacts/1/contactData\",\n \"contactGoals\": \"https://:account.api-us1.com/api/:version/contacts/1/contactGoals\",\n \"contactLists\": \"https://:account.api-us1.com/api/:version/contacts/1/contactLists\",\n \"contactLogs\": \"https://:account.api-us1.com/api/:version/contacts/1/contactLogs\",\n \"contactTags\": \"https://:account.api-us1.com/api/:version/contacts/1/contactTags\",\n \"contactDeals\": \"https://:account.api-us1.com/api/:version/contacts/1/contactDeals\",\n \"deals\": \"https://staging-tjahn.api-us1.com/api/3/contacts/1/deals\",\n \"fieldValues\": \"https://:account.api-us1.com/api/:version/contacts/1/fieldValues\",\n \"geoIps\": \"https://:account.api-us1.com/api/:version/contacts/1/geoIps\",\n \"notes\": \"https://:account.api-us1.com/api/:version/contacts/1/notes\",\n \"organization\": \"https://:account.api-us1.com/api/:version/contacts/1/organization\",\n \"plusAppend\": \"https://:account.api-us1.com/api/:version/contacts/1/plusAppend\",\n \"trackingLogs\": \"https://:account.api-us1.com/api/:version/contacts/1/trackingLogs\",\n \"scoreValues\": \"https://:account.api-us1.com/api/:version/contacts/1/scoreValues\"\n },\n \"id\": \"1\",\n \"organization\": null\n }\n ],\n \"contactList\": {\n \"contact\": \"1\",\n \"list\": \"2\",\n \"form\": null,\n \"seriesid\": \"0\",\n \"sdate\": \"2018-10-16T13:52:35-05:00\",\n \"status\": 1,\n \"responder\": \"1\",\n \"sync\": \"0\",\n \"unsubreason\": \"\",\n \"campaign\": null,\n \"message\": null,\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"ip4Sub\": \"0\",\n \"sourceid\": \"3\",\n \"autosyncLog\": null,\n \"ip4_last\": \"0\",\n \"ip4Unsub\": \"0\",\n \"unsubscribeAutomation\": null,\n \"links\": {\n \"automation\": \"https://:account.api-us1.com/api/:version/contactLists/2/automation\",\n \"list\": \"https://:account.api-us1.com/api/:version/contactLists/2/list\",\n \"contact\": \"https://:account.api-us1.com/api/:version/contactLists/2/contact\",\n \"form\": \"https://:account.api-us1.com/api/:version/contactLists/2/form\",\n \"autosyncLog\": \"https://:account.api-us1.com/api/:version/contactLists/2/autosyncLog\",\n \"campaign\": \"https://:account.api-us1.com/api/:version/contactLists/2/campaign\",\n \"unsubscribeAutomation\": \"https://:account.api-us1.com/api/:version/contactLists/2/unsubscribeAutomation\",\n \"message\": \"https://:account.api-us1.com/api/:version/contactLists/2/message\"\n },\n \"id\": \"2\",\n \"automation\": null\n }\n}" schema: type: object properties: contacts: type: array items: type: object properties: cdate: type: string example: '2017-07-24T12:09:52-05:00' email: type: string example: johndoe@example.com phone: type: string example: '' firstName: type: string example: John lastName: type: string example: Doe orgid: type: string example: '0' segmentio_id: type: string example: '' bounced_hard: type: string example: '0' bounced_soft: type: string example: '0' bounced_date: type: string example: '0000-00-00' ip: type: string example: '0' ua: type: string example: '' hash: type: string example: '1234567890' socialdata_lastcheck: type: string example: '0000-00-00 00:00:00' email_local: type: string example: '' email_domain: type: string example: '' sentcnt: type: string example: '1' rating_tstamp: type: string example: '0000-00-00' gravatar: type: string example: '0' deleted: type: string example: '0' anonymized: type: string example: '0' adate: type: string example: '2018-10-16T13:52:32-05:00' udate: type: string example: '2018-10-16T13:50:18-05:00' deleted_at: type: string example: '0000-00-00 00:00:00' created_utc_timestamp: type: string example: '2018-10-01 08:40:10' updated_utc_timestamp: type: string example: '2018-10-16 13:50:18' links: type: object properties: bounceLogs: type: string example: https://:account.api-us1.com/api/:version/contacts/1/bounceLogs contactAutomations: type: string example: https://:account.api-us1.com/api/:version/contacts/1/contactAutomations contactData: type: string example: https://:account.api-us1.com/api/:version/contacts/1/contactData contactGoals: type: string example: https://:account.api-us1.com/api/:version/contacts/1/contactGoals contactLists: type: string example: https://:account.api-us1.com/api/:version/contacts/1/contactLists contactLogs: type: string example: https://:account.api-us1.com/api/:version/contacts/1/contactLogs contactTags: type: string example: https://:account.api-us1.com/api/:version/contacts/1/contactTags contactDeals: type: string example: https://:account.api-us1.com/api/:version/contacts/1/contactDeals deals: type: string example: https://staging-tjahn.api-us1.com/api/3/contacts/1/deals fieldValues: type: string example: https://:account.api-us1.com/api/:version/contacts/1/fieldValues geoIps: type: string example: https://:account.api-us1.com/api/:version/contacts/1/geoIps notes: type: string example: https://:account.api-us1.com/api/:version/contacts/1/notes organization: type: string example: https://:account.api-us1.com/api/:version/contacts/1/organization plusAppend: type: string example: https://:account.api-us1.com/api/:version/contacts/1/plusAppend trackingLogs: type: string example: https://:account.api-us1.com/api/:version/contacts/1/trackingLogs scoreValues: type: string example: https://:account.api-us1.com/api/:version/contacts/1/scoreValues id: type: string example: '1' organization: {} contactList: type: object properties: contact: type: string example: '1' list: type: string example: '2' form: {} seriesid: type: string example: '0' sdate: type: string example: '2018-10-16T13:52:35-05:00' status: type: integer example: 1 default: 0 responder: type: string example: '1' sync: type: string example: '0' unsubreason: type: string example: '' campaign: {} message: {} first_name: type: string example: John last_name: type: string example: Doe ip4Sub: type: string example: '0' sourceid: type: string example: '3' autosyncLog: {} ip4_last: type: string example: '0' ip4Unsub: type: string example: '0' unsubscribeAutomation: {} links: type: object properties: automation: type: string example: https://:account.api-us1.com/api/:version/contactLists/2/automation list: type: string example: https://:account.api-us1.com/api/:version/contactLists/2/list contact: type: string example: https://:account.api-us1.com/api/:version/contactLists/2/contact form: type: string example: https://:account.api-us1.com/api/:version/contactLists/2/form autosyncLog: type: string example: https://:account.api-us1.com/api/:version/contactLists/2/autosyncLog campaign: type: string example: https://:account.api-us1.com/api/:version/contactLists/2/campaign unsubscribeAutomation: type: string example: https://:account.api-us1.com/api/:version/contactLists/2/unsubscribeAutomation message: type: string example: https://:account.api-us1.com/api/:version/contactLists/2/message id: type: string example: '2' automation: {} '400': description: '400' content: application/json: examples: Result: value: '{}' schema: type: object properties: {} deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/contactAutomations: get: summary: ActiveCampaign List All Automations the Contact is in description: '' operationId: list-all-contactautomations-for-contact parameters: - name: id in: path description: ID of the contact to receive automations for schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"contactAutomations\": [\n {\n \"contact\": \"6\",\n \"seriesid\": \"2\",\n \"startid\": \"0\",\n \"status\": \"2\",\n \"batchid\": \"completed\",\n \"adddate\": \"2022-03-01T08:51:57-06:00\",\n \"remdate\": \"2022-03-01T08:51:58-06:00\",\n \"timespan\": \"1\",\n \"lastblock\": \"5\",\n \"lastlogid\": \"0\",\n \"lastdate\": \"2022-03-01T08:51:58-06:00\",\n \"in_als\": \"3\",\n \"completedElements\": 0,\n \"totalElements\": 3,\n \"completed\": 1,\n \"completeValue\": 100,\n \"links\": {\n \"automation\": \"https://:account.api-us1.com/api/3/contactAutomations/6/automation\",\n \"contact\": \"https://:account.api-us1.com/api/3/contactAutomations/6/contact\",\n \"contactGoals\": \"https://:account.api-us1.com/api/3/contactAutomations/6/contactGoals\",\n \"automationLogs\": \"https://:account.api-us1.com/api/3/contactAutomations/6/automationLogs\"\n },\n \"id\": \"6\",\n \"automation\": \"2\"\n }\n ]\n}" schema: type: object properties: contactAutomations: type: array items: type: object properties: contact: type: string example: '6' seriesid: type: string example: '2' startid: type: string example: '0' status: type: string example: '2' batchid: type: string example: completed adddate: type: string example: '2022-03-01T08:51:57-06:00' remdate: type: string example: '2022-03-01T08:51:58-06:00' timespan: type: string example: '1' lastblock: type: string example: '5' lastlogid: type: string example: '0' lastdate: type: string example: '2022-03-01T08:51:58-06:00' in_als: type: string example: '3' completedElements: type: integer example: 0 default: 0 totalElements: type: integer example: 3 default: 0 completed: type: integer example: 1 default: 0 completeValue: type: integer example: 100 default: 0 links: type: object properties: automation: type: string example: https://:account.api-us1.com/api/3/contactAutomations/6/automation contact: type: string example: https://:account.api-us1.com/api/3/contactAutomations/6/contact contactGoals: type: string example: https://:account.api-us1.com/api/3/contactAutomations/6/contactGoals automationLogs: type: string example: https://:account.api-us1.com/api/3/contactAutomations/6/automationLogs id: type: string example: '6' automation: type: string example: '2' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 1\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 1 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/scoreValues: get: summary: ActiveCampaign Retrieve a Contact's Score Value description: '' operationId: retrieve-a-contacts-score-value parameters: - name: id in: path description: id of the Contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"scoreValues\": [\n {\n \"score\": \"2\",\n \"contact\": \"1\",\n \"deal\": null,\n \"cdate\": \"2018-03-08T14:01:16-06:00\",\n \"mdate\": \"2018-10-22T20:15:28-05:00\",\n \"scoreValue\": \"0\",\n \"links\": {\n \"score\": \"https://:account.api-us1.com/api/3/scoreValues/1/score\",\n \"contact\": \"https://:account.api-us1.com/api/3/scoreValues/1/contact\",\n \"deal\": \"https://:account.api-us1.com/api/3/scoreValues/1/deal\"\n },\n \"id\": \"1\"\n }\n ]\n}" schema: type: object properties: scoreValues: type: array items: type: object properties: score: type: string example: '2' contact: type: string example: '1' deal: {} cdate: type: string example: '2018-03-08T14:01:16-06:00' mdate: type: string example: '2018-10-22T20:15:28-05:00' scoreValue: type: string example: '0' links: type: object properties: score: type: string example: https://:account.api-us1.com/api/3/scoreValues/1/score contact: type: string example: https://:account.api-us1.com/api/3/scoreValues/1/contact deal: type: string example: https://:account.api-us1.com/api/3/scoreValues/1/deal id: type: string example: '1' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 100 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/bounceLogs: get: summary: ActiveCampaign Retrieve a Contact's Bounce Logs description: '' operationId: retrieve-contact-bounce-logs parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"bounceLogs\": [\n {\n \"tstamp\": \"2021-05-12T11:30:06-05:00\",\n \"bounceid\": \"1\",\n \"subscriberid\": \"4\",\n \"campaignid\": \"11\",\n \"messageid\": \"12\",\n \"codeid\": \"48\",\n \"email\": \"uhOhBounced@example.com\",\n \"error\": \"\",\n \"source\": \"Return-Path: <>\\nReceived: from xxx.xxxx.xxxxxxc.com (unknown [XX.X.XX.XX]) ...\",\n \"created_timestamp\": \"2021-05-12 11:30:06\",\n \"updated_timestamp\": \"2021-05-12 11:30:06\",\n \"created_by\": null,\n \"updated_by\": null,\n \"links\": {\n \"bounce\": \"https://:account.api-us1.com/api/3/bounceLogs/23/bounce\",\n \"contact\": \"https://:account.api-us1.com/api/3/bounceLogs/23/contact\",\n \"campaign\": \"https://:account.api-us1.com/api/3/bounceLogs/23/campaign\",\n \"message\": \"https://:account.api-us1.com/api/3/bounceLogs/23/message\",\n \"code\": \"https://:account.api-us1.com/api/3/bounceLogs/23/code\"\n },\n \"id\": \"23\",\n \"bounce\": \"1\",\n \"contact\": \"4\",\n \"campaign\": \"11\",\n \"message\": \"12\",\n \"code\": \"48\"\n }\n ]\n}" schema: type: object properties: bounceLogs: type: array items: type: object properties: tstamp: type: string example: '2021-05-12T11:30:06-05:00' bounceid: type: string example: '1' subscriberid: type: string example: '4' campaignid: type: string example: '11' messageid: type: string example: '12' codeid: type: string example: '48' email: type: string example: uhOhBounced@example.com error: type: string example: '' source: type: string example: 'Return-Path: <> Received: from xxx.xxxx.xxxxxxc.com (unknown [XX.X.XX.XX]) ...' created_timestamp: type: string example: '2021-05-12 11:30:06' updated_timestamp: type: string example: '2021-05-12 11:30:06' created_by: {} updated_by: {} links: type: object properties: bounce: type: string example: https://:account.api-us1.com/api/3/bounceLogs/23/bounce contact: type: string example: https://:account.api-us1.com/api/3/bounceLogs/23/contact campaign: type: string example: https://:account.api-us1.com/api/3/bounceLogs/23/campaign message: type: string example: https://:account.api-us1.com/api/3/bounceLogs/23/message code: type: string example: https://:account.api-us1.com/api/3/bounceLogs/23/code id: type: string example: '23' bounce: type: string example: '1' contact: type: string example: '4' campaign: type: string example: '11' message: type: string example: '12' code: type: string example: '48' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 100 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/contactData: get: summary: ActiveCampaign Retrieve a Contact's Data description: '' operationId: retrieve-contact-data parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"contactDatum\": {\n \"contact\": \"4\",\n \"tstamp\": \"2021-06-09T14:35:10-05:00\",\n \"geoTstamp\": null,\n \"geoIp4\": \"0\",\n \"geoCountry2\": \"\",\n \"geo_country\": \"\",\n \"geoState\": \"\",\n \"geoCity\": \"\",\n \"geoZip\": \"\",\n \"geoArea\": \"0\",\n \"geoLat\": \"0.000000\",\n \"geoLon\": \"0.000000\",\n \"geoTz\": \"\",\n \"geoTzOffset\": \"0.00\",\n \"ga_campaign_source\": \"\",\n \"ga_campaign_name\": \"\",\n \"ga_campaign_medium\": \"\",\n \"ga_campaign_term\": \"\",\n \"ga_campaign_content\": \"\",\n \"ga_campaign_customsegment\": \"\",\n \"ga_first_visit\": null,\n \"ga_times_visited\": \"0\",\n \"fb_id\": \"0\",\n \"fb_name\": \"\",\n \"tw_id\": \"0\",\n \"created_timestamp\": \"0000-00-00 00:00:00\",\n \"updated_timestamp\": \"0000-00-00 00:00:00\",\n \"created_by\": \"0\",\n \"updated_by\": \"0\",\n \"links\": [],\n \"id\": \"12\"\n }\n}" schema: type: object properties: contactDatum: type: object properties: contact: type: string example: '4' tstamp: type: string example: '2021-06-09T14:35:10-05:00' geoTstamp: {} geoIp4: type: string example: '0' geoCountry2: type: string example: '' geo_country: type: string example: '' geoState: type: string example: '' geoCity: type: string example: '' geoZip: type: string example: '' geoArea: type: string example: '0' geoLat: type: string example: '0.000000' geoLon: type: string example: '0.000000' geoTz: type: string example: '' geoTzOffset: type: string example: '0.00' ga_campaign_source: type: string example: '' ga_campaign_name: type: string example: '' ga_campaign_medium: type: string example: '' ga_campaign_term: type: string example: '' ga_campaign_content: type: string example: '' ga_campaign_customsegment: type: string example: '' ga_first_visit: {} ga_times_visited: type: string example: '0' fb_id: type: string example: '0' fb_name: type: string example: '' tw_id: type: string example: '0' created_timestamp: type: string example: '0000-00-00 00:00:00' updated_timestamp: type: string example: '0000-00-00 00:00:00' created_by: type: string example: '0' updated_by: type: string example: '0' links: type: array id: type: string example: '12' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 121\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 121 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/contactGoals: get: summary: ActiveCampaign Retrieve a Contact's Goals description: '' operationId: retrieve-contact-goals parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"contactGoals\": [\n {\n \"goalid\": \"3\",\n \"seriesid\": \"2\",\n \"subscriberid\": \"5\",\n \"subscriberseriesid\": \"83\",\n \"timespan\": \"1\",\n \"tstamp\": \"2021-05-12T14:55:19-05:00\",\n \"links\": {\n \"goal\": \"https://:account.api-us1.com/api/3/contactGoals/3/goal\",\n \"automation\": \"https://:account.api-us1.com/api/3/contactGoals/3/automation\",\n \"contact\": \"https://:account.api-us1.com/api/3/contactGoals/3/contact\",\n \"contactAutomation\": \"https://:account.api-us1.com/api/3/contactGoals/3/contactAutomation\",\n \"contactGoalLists\": \"https://:account.api-us1.com/api/3/contactGoals/3/contactGoalLists\",\n \"contactGoalTags\": \"https://:account.api-us1.com/api/3/contactGoals/3/contactGoalTags\"\n },\n \"id\": \"3\",\n \"goal\": \"3\",\n \"automation\": \"2\",\n \"contact\": \"5\",\n \"contactAutomation\": \"83\"\n }\n ]\n}" schema: type: object properties: contactGoals: type: array items: type: object properties: goalid: type: string example: '3' seriesid: type: string example: '2' subscriberid: type: string example: '5' subscriberseriesid: type: string example: '83' timespan: type: string example: '1' tstamp: type: string example: '2021-05-12T14:55:19-05:00' links: type: object properties: goal: type: string example: https://:account.api-us1.com/api/3/contactGoals/3/goal automation: type: string example: https://:account.api-us1.com/api/3/contactGoals/3/automation contact: type: string example: https://:account.api-us1.com/api/3/contactGoals/3/contact contactAutomation: type: string example: https://:account.api-us1.com/api/3/contactGoals/3/contactAutomation contactGoalLists: type: string example: https://:account.api-us1.com/api/3/contactGoals/3/contactGoalLists contactGoalTags: type: string example: https://:account.api-us1.com/api/3/contactGoals/3/contactGoalTags id: type: string example: '3' goal: type: string example: '3' automation: type: string example: '2' contact: type: string example: '5' contactAutomation: type: string example: '83' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 121\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 121 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/contactLists: get: summary: ActiveCampaign Retrieve a Contact's List Memberships description: '' operationId: retrieve-contact-list-memberships parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"contactLists\": [\n {\n \"contact\": \"19\",\n \"list\": \"1\",\n \"form\": null,\n \"seriesid\": \"0\",\n \"sdate\": \"2021-04-08T11:17:44-05:00\",\n \"udate\": \"2021-05-12T11:10:06-05:00\",\n \"status\": \"3\",\n \"responder\": \"1\",\n \"sync\": \"1\",\n \"unsubreason\": null,\n \"campaign\": null,\n \"message\": null,\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"ip4Sub\": \"XXXXXXXXXX\",\n \"sourceid\": \"1\",\n \"autosyncLog\": null,\n \"ip4_last\": \"0\",\n \"ip4Unsub\": \"0\",\n \"created_timestamp\": \"2021-04-08 11:17:44\",\n \"updated_timestamp\": \"2021-05-12 11:10:06\",\n \"created_by\": null,\n \"updated_by\": null,\n \"unsubscribeAutomation\": null,\n \"links\": {\n \"automation\": \"https://:account.api-us1.com/api/3/contactLists/19/automation\",\n \"list\": \"https://:account.api-us1.com/api/3/contactLists/19/list\",\n \"contact\": \"https://:account.api-us1.com/api/3/contactLists/19/contact\",\n \"form\": \"https://:account.api-us1.com/api/3/contactLists/19/form\",\n \"autosyncLog\": \"https://:account.api-us1.com/api/3/contactLists/19/autosyncLog\",\n \"campaign\": \"https://:account.api-us1.com/api/3/contactLists/19/campaign\",\n \"unsubscribeAutomation\": \"https://:account.api-us1.com/api/3/contactLists/19/unsubscribeAutomation\",\n \"message\": \"https://:account.api-us1.com/api/3/contactLists/19/message\"\n },\n \"id\": \"19\",\n \"automation\": null\n }\n ]\n}" schema: type: object properties: contactLists: type: array items: type: object properties: contact: type: string example: '19' list: type: string example: '1' form: {} seriesid: type: string example: '0' sdate: type: string example: '2021-04-08T11:17:44-05:00' udate: type: string example: '2021-05-12T11:10:06-05:00' status: type: string example: '3' responder: type: string example: '1' sync: type: string example: '1' unsubreason: {} campaign: {} message: {} first_name: type: string example: John last_name: type: string example: Doe ip4Sub: type: string example: XXXXXXXXXX sourceid: type: string example: '1' autosyncLog: {} ip4_last: type: string example: '0' ip4Unsub: type: string example: '0' created_timestamp: type: string example: '2021-04-08 11:17:44' updated_timestamp: type: string example: '2021-05-12 11:10:06' created_by: {} updated_by: {} unsubscribeAutomation: {} links: type: object properties: automation: type: string example: https://:account.api-us1.com/api/3/contactLists/19/automation list: type: string example: https://:account.api-us1.com/api/3/contactLists/19/list contact: type: string example: https://:account.api-us1.com/api/3/contactLists/19/contact form: type: string example: https://:account.api-us1.com/api/3/contactLists/19/form autosyncLog: type: string example: https://:account.api-us1.com/api/3/contactLists/19/autosyncLog campaign: type: string example: https://:account.api-us1.com/api/3/contactLists/19/campaign unsubscribeAutomation: type: string example: https://:account.api-us1.com/api/3/contactLists/19/unsubscribeAutomation message: type: string example: https://:account.api-us1.com/api/3/contactLists/19/message id: type: string example: '19' automation: {} '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 121\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 121 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/contactLogs: get: summary: ActiveCampaign Retrieve a Contact's Logs description: '' operationId: retrieve-contact-logs parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"contactLogs\": []\n}" schema: type: object properties: contactLogs: type: array '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 100 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/contactDeals: get: summary: ActiveCampaign Retrieve a List of Contact's Deals description: '' operationId: retrieve-contact-deals-list parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"contacts\": [\n {\n \"cdate\": \"2021-11-28T00:00:00-06:00\",\n \"email\": \"john.doe@example.com\",\n \"phone\": \"555-555-5555\",\n \"firstName\": \"John\",\n \"lastName\": \"Doe\",\n \"orgid\": \"XX\",\n \"orgname\": \"Opulence Time\",\n \"segmentio_id\": \"\",\n \"bounced_hard\": \"0\",\n \"bounced_soft\": \"0\",\n \"bounced_date\": \"0000-00-00\",\n \"ip\": \"0\",\n \"ua\": \"\",\n \"hash\": \"43fa9ikvd23cbc59915f89asd234gsda27b33\",\n \"socialdata_lastcheck\": \"0000-00-00 00:00:00\",\n \"email_local\": \"\",\n \"email_domain\": \"\",\n \"sentcnt\": \"0\",\n \"rating_tstamp\": \"0000-00-00\",\n \"gravatar\": \"0\",\n \"deleted\": \"0\",\n \"anonymized\": \"0\",\n \"adate\": \"2021-11-28T00:00:00-06:00\",\n \"udate\": \"2021-11-28T00:00:00-06:00\",\n \"edate\": \"2021-12-20T06:23:31-06:00\",\n \"deleted_at\": \"0000-00-00 00:00:00\",\n \"created_utc_timestamp\": \"2021-11-28 00:00:00\",\n \"updated_utc_timestamp\": \"2022-01-25 16:26:37\",\n \"created_timestamp\": \"2021-11-28 00:00:00\",\n \"updated_timestamp\": \"2021-12-09 00:00:00\",\n \"created_by\": \"0\",\n \"updated_by\": \"0\",\n \"email_empty\": false,\n \"mpp_tracking\": \"0\",\n \"links\": {\n \"bounceLogs\": \"https://:account.api-us1.com/api/3/contacts/1107/bounceLogs\",\n \"contactAutomations\": \"https://:account.api-us1.com/api/3/contacts/1107/contactAutomations?limit=1000&orders%5Blastdate%5D=DESC\",\n \"contactData\": \"https://:account.api-us1.com/api/3/contacts/1107/contactData\",\n \"contactGoals\": \"https://:account.api-us1.com/api/3/contacts/1107/contactGoals\",\n \"contactLists\": \"https://:account.api-us1.com/api/3/contacts/1107/contactLists\",\n \"contactLogs\": \"https://:account.api-us1.com/api/3/contacts/1107/contactLogs\",\n \"contactTags\": \"https://:account.api-us1.com/api/3/contacts/1107/contactTags\",\n \"contactDeals\": \"https://:account.api-us1.com/api/3/contacts/1107/contactDeals\",\n \"deals\": \"https://:account.api-us1.com/api/3/contacts/1107/deals\",\n \"fieldValues\": \"https://:account.api-us1.com/api/3/contacts/1107/fieldValues\",\n \"geoIps\": \"https://:account.api-us1.com/api/3/contacts/1107/geoIps\",\n \"notes\": \"https://:account.api-us1.com/api/3/contacts/1107/notes\",\n \"organization\": \"https://:account.api-us1.com/api/3/contacts/1107/organization\",\n \"plusAppend\": \"https://:account.api-us1.com/api/3/contacts/1107/plusAppend\",\n \"trackingLogs\": \"https://:account.api-us1.com/api/3/contacts/1107/trackingLogs\",\n \"scoreValues\": \"https://:account.api-us1.com/api/3/contacts/1107/scoreValues\",\n \"accountContacts\": \"https://:account.api-us1.com/api/3/contacts/1107/accountContacts\",\n \"automationEntryCounts\": \"https://:account.api-us1.com/api/3/contacts/1107/automationEntryCounts\"\n },\n \"id\": \"XXXX\",\n \"organization\": \"XX\"\n }\n ],\n \"deals\": [\n {\n \"hash\": \"dx60eh125\",\n \"owner\": \"8\",\n \"contact\": \"XXXX\",\n \"organization\": \"31\",\n \"group\": \"1\",\n \"stage\": \"1\",\n \"title\": \"Opulence Time\",\n \"description\": \"\",\n \"percent\": \"0\",\n \"cdate\": \"2022-01-24T00:00:00-06:00\",\n \"mdate\": \"2022-01-25T00:00:00-06:00\",\n \"nextdate\": null,\n \"nexttaskid\": \"0\",\n \"value\": \"7320163\",\n \"currency\": \"usd\",\n \"winProbability\": null,\n \"winProbabilityMdate\": null,\n \"status\": \"0\",\n \"activitycount\": \"24\",\n \"nextdealid\": \"4218\",\n \"edate\": \"2022-03-07 00:00:00\",\n \"links\": {\n \"dealActivities\": \"https://:account.api-us1.com/api/3/deals/4228/dealActivities\",\n \"contact\": \"https://:account.api-us1.com/api/3/deals/4228/contact\",\n \"contactDeals\": \"https://:account.api-us1.com/api/3/deals/4228/contactDeals\",\n \"group\": \"https://:account.api-us1.com/api/3/deals/4228/group\",\n \"nextTask\": \"https://:account.api-us1.com/api/3/deals/4228/nextTask\",\n \"notes\": \"https://:account.api-us1.com/api/3/deals/4228/notes\",\n \"account\": \"https://:account.api-us1.com/api/3/deals/4228/account\",\n \"customerAccount\": \"https://:account.api-us1.com/api/3/deals/4228/customerAccount\",\n \"organization\": \"https://:account.api-us1.com/api/3/deals/4228/organization\",\n \"owner\": \"https://:account.api-us1.com/api/3/deals/4228/owner\",\n \"scoreValues\": \"https://:account.api-us1.com/api/3/deals/4228/scoreValues\",\n \"stage\": \"https://:account.api-us1.com/api/3/deals/4228/stage\",\n \"tasks\": \"https://:account.api-us1.com/api/3/deals/4228/tasks\",\n \"dealCustomFieldData\": \"https://:account.api-us1.com/api/3/deals/4228/dealCustomFieldData\"\n },\n \"id\": \"4228\",\n \"isDisabled\": false,\n \"nextTask\": null,\n \"account\": \"31\",\n \"customerAccount\": \"31\"\n }\n ],\n \"contactDeals\": [\n {\n \"deal\": \"4228\",\n \"contact\": \"5\",\n \"role\": null,\n \"cdate\": \"2021-10-22T13:16:27-05:00\",\n \"created_timestamp\": \"2021-10-22 13:16:27\",\n \"updated_timestamp\": \"2021-10-22 13:16:27\",\n \"created_by\": null,\n \"updated_by\": null,\n \"links\": {\n \"deal\": \"https://:account.api-us1.com/api/3/contactDeals/4248/deal\",\n \"contact\": \"https://:account.api-us1.com/api/3/contactDeals/4248/contact\",\n \"role\": \"https://:account.api-us1.com/api/3/contactDeals/4248/role\"\n },\n \"id\": \"4248\"\n }\n ]\n}" schema: type: object properties: contacts: type: array items: type: object properties: cdate: type: string example: '2021-11-28T00:00:00-06:00' email: type: string example: john.doe@example.com phone: type: string example: 555-555-5555 firstName: type: string example: John lastName: type: string example: Doe orgid: type: string example: XX orgname: type: string example: Opulence Time segmentio_id: type: string example: '' bounced_hard: type: string example: '0' bounced_soft: type: string example: '0' bounced_date: type: string example: '0000-00-00' ip: type: string example: '0' ua: type: string example: '' hash: type: string example: 43fa9ikvd23cbc59915f89asd234gsda27b33 socialdata_lastcheck: type: string example: '0000-00-00 00:00:00' email_local: type: string example: '' email_domain: type: string example: '' sentcnt: type: string example: '0' rating_tstamp: type: string example: '0000-00-00' gravatar: type: string example: '0' deleted: type: string example: '0' anonymized: type: string example: '0' adate: type: string example: '2021-11-28T00:00:00-06:00' udate: type: string example: '2021-11-28T00:00:00-06:00' edate: type: string example: '2021-12-20T06:23:31-06:00' deleted_at: type: string example: '0000-00-00 00:00:00' created_utc_timestamp: type: string example: '2021-11-28 00:00:00' updated_utc_timestamp: type: string example: '2022-01-25 16:26:37' created_timestamp: type: string example: '2021-11-28 00:00:00' updated_timestamp: type: string example: '2021-12-09 00:00:00' created_by: type: string example: '0' updated_by: type: string example: '0' email_empty: type: boolean example: false default: true mpp_tracking: type: string example: '0' links: type: object properties: bounceLogs: type: string example: https://:account.api-us1.com/api/3/contacts/1107/bounceLogs contactAutomations: type: string example: https://:account.api-us1.com/api/3/contacts/1107/contactAutomations?limit=1000&orders%5Blastdate%5D=DESC contactData: type: string example: https://:account.api-us1.com/api/3/contacts/1107/contactData contactGoals: type: string example: https://:account.api-us1.com/api/3/contacts/1107/contactGoals contactLists: type: string example: https://:account.api-us1.com/api/3/contacts/1107/contactLists contactLogs: type: string example: https://:account.api-us1.com/api/3/contacts/1107/contactLogs contactTags: type: string example: https://:account.api-us1.com/api/3/contacts/1107/contactTags contactDeals: type: string example: https://:account.api-us1.com/api/3/contacts/1107/contactDeals deals: type: string example: https://:account.api-us1.com/api/3/contacts/1107/deals fieldValues: type: string example: https://:account.api-us1.com/api/3/contacts/1107/fieldValues geoIps: type: string example: https://:account.api-us1.com/api/3/contacts/1107/geoIps notes: type: string example: https://:account.api-us1.com/api/3/contacts/1107/notes organization: type: string example: https://:account.api-us1.com/api/3/contacts/1107/organization plusAppend: type: string example: https://:account.api-us1.com/api/3/contacts/1107/plusAppend trackingLogs: type: string example: https://:account.api-us1.com/api/3/contacts/1107/trackingLogs scoreValues: type: string example: https://:account.api-us1.com/api/3/contacts/1107/scoreValues accountContacts: type: string example: https://:account.api-us1.com/api/3/contacts/1107/accountContacts automationEntryCounts: type: string example: https://:account.api-us1.com/api/3/contacts/1107/automationEntryCounts id: type: string example: XXXX organization: type: string example: XX deals: type: array items: type: object properties: hash: type: string example: dx60eh125 owner: type: string example: '8' contact: type: string example: XXXX organization: type: string example: '31' group: type: string example: '1' stage: type: string example: '1' title: type: string example: Opulence Time description: type: string example: '' percent: type: string example: '0' cdate: type: string example: '2022-01-24T00:00:00-06:00' mdate: type: string example: '2022-01-25T00:00:00-06:00' nextdate: {} nexttaskid: type: string example: '0' value: type: string example: '7320163' currency: type: string example: usd winProbability: {} winProbabilityMdate: {} status: type: string example: '0' activitycount: type: string example: '24' nextdealid: type: string example: '4218' edate: type: string example: '2022-03-07 00:00:00' links: type: object properties: dealActivities: type: string example: https://:account.api-us1.com/api/3/deals/4228/dealActivities contact: type: string example: https://:account.api-us1.com/api/3/deals/4228/contact contactDeals: type: string example: https://:account.api-us1.com/api/3/deals/4228/contactDeals group: type: string example: https://:account.api-us1.com/api/3/deals/4228/group nextTask: type: string example: https://:account.api-us1.com/api/3/deals/4228/nextTask notes: type: string example: https://:account.api-us1.com/api/3/deals/4228/notes account: type: string example: https://:account.api-us1.com/api/3/deals/4228/account customerAccount: type: string example: https://:account.api-us1.com/api/3/deals/4228/customerAccount organization: type: string example: https://:account.api-us1.com/api/3/deals/4228/organization owner: type: string example: https://:account.api-us1.com/api/3/deals/4228/owner scoreValues: type: string example: https://:account.api-us1.com/api/3/deals/4228/scoreValues stage: type: string example: https://:account.api-us1.com/api/3/deals/4228/stage tasks: type: string example: https://:account.api-us1.com/api/3/deals/4228/tasks dealCustomFieldData: type: string example: https://:account.api-us1.com/api/3/deals/4228/dealCustomFieldData id: type: string example: '4228' isDisabled: type: boolean example: false default: true nextTask: {} account: type: string example: '31' customerAccount: type: string example: '31' contactDeals: type: array items: type: object properties: deal: type: string example: '4228' contact: type: string example: '5' role: {} cdate: type: string example: '2021-10-22T13:16:27-05:00' created_timestamp: type: string example: '2021-10-22 13:16:27' updated_timestamp: type: string example: '2021-10-22 13:16:27' created_by: {} updated_by: {} links: type: object properties: deal: type: string example: https://:account.api-us1.com/api/3/contactDeals/4248/deal contact: type: string example: https://:account.api-us1.com/api/3/contactDeals/4248/contact role: type: string example: https://:account.api-us1.com/api/3/contactDeals/4248/role id: type: string example: '4248' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 100 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/deals: get: summary: ActiveCampaign Retrieve a Contact's Deals description: '' operationId: retrieve-contact-deals parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"deals\": [\n {\n \"hash\": \"8be32as98\",\n \"owner\": \"8\",\n \"contact\": \"8\",\n \"organization\": \"5\",\n \"group\": \"1\",\n \"stage\": \"4\",\n \"title\": \"Acme Corp\",\n \"description\": \"\",\n \"percent\": \"0\",\n \"cdate\": \"2021-06-30T15:27:44-05:00\",\n \"mdate\": \"2021-06-30T15:27:44-05:00\",\n \"nextdate\": null,\n \"nexttaskid\": null,\n \"value\": \"494227\",\n \"currency\": \"usd\",\n \"winProbability\": null,\n \"winProbabilityMdate\": null,\n \"status\": \"2\",\n \"activitycount\": \"1\",\n \"nextdealid\": \"3060\",\n \"edate\": null,\n \"links\": {\n \"dealActivities\": \"https://:acount.api-us1.com/api/3/deals/3057/dealActivities\",\n \"contact\": \"https://:acount.api-us1.com/api/3/deals/3057/contact\",\n \"contactDeals\": \"https://:acount.api-us1.com/api/3/deals/3057/contactDeals\",\n \"group\": \"https://:acount.api-us1.com/api/3/deals/3057/group\",\n \"nextTask\": \"https://:acount.api-us1.com/api/3/deals/3057/nextTask\",\n \"notes\": \"https://:acount.api-us1.com/api/3/deals/3057/notes\",\n \"account\": \"https://:acount.api-us1.com/api/3/deals/3057/account\",\n \"customerAccount\": \"https://:acount.api-us1.com/api/3/deals/3057/customerAccount\",\n \"organization\": \"https://:acount.api-us1.com/api/3/deals/3057/organization\",\n \"owner\": \"https://:acount.api-us1.com/api/3/deals/3057/owner\",\n \"scoreValues\": \"https://:acount.api-us1.com/api/3/deals/3057/scoreValues\",\n \"stage\": \"https://:acount.api-us1.com/api/3/deals/3057/stage\",\n \"tasks\": \"https://:acount.api-us1.com/api/3/deals/3057/tasks\",\n \"dealCustomFieldData\": \"https://:acount.api-us1.com/api/3/deals/3057/dealCustomFieldData\"\n },\n \"id\": \"3057\",\n \"isDisabled\": false,\n \"account\": \"5\",\n \"customerAccount\": \"5\"\n }\n ]\n}" schema: type: object properties: deals: type: array items: type: object properties: hash: type: string example: 8be32as98 owner: type: string example: '8' contact: type: string example: '8' organization: type: string example: '5' group: type: string example: '1' stage: type: string example: '4' title: type: string example: Acme Corp description: type: string example: '' percent: type: string example: '0' cdate: type: string example: '2021-06-30T15:27:44-05:00' mdate: type: string example: '2021-06-30T15:27:44-05:00' nextdate: {} nexttaskid: {} value: type: string example: '494227' currency: type: string example: usd winProbability: {} winProbabilityMdate: {} status: type: string example: '2' activitycount: type: string example: '1' nextdealid: type: string example: '3060' edate: {} links: type: object properties: dealActivities: type: string example: https://:acount.api-us1.com/api/3/deals/3057/dealActivities contact: type: string example: https://:acount.api-us1.com/api/3/deals/3057/contact contactDeals: type: string example: https://:acount.api-us1.com/api/3/deals/3057/contactDeals group: type: string example: https://:acount.api-us1.com/api/3/deals/3057/group nextTask: type: string example: https://:acount.api-us1.com/api/3/deals/3057/nextTask notes: type: string example: https://:acount.api-us1.com/api/3/deals/3057/notes account: type: string example: https://:acount.api-us1.com/api/3/deals/3057/account customerAccount: type: string example: https://:acount.api-us1.com/api/3/deals/3057/customerAccount organization: type: string example: https://:acount.api-us1.com/api/3/deals/3057/organization owner: type: string example: https://:acount.api-us1.com/api/3/deals/3057/owner scoreValues: type: string example: https://:acount.api-us1.com/api/3/deals/3057/scoreValues stage: type: string example: https://:acount.api-us1.com/api/3/deals/3057/stage tasks: type: string example: https://:acount.api-us1.com/api/3/deals/3057/tasks dealCustomFieldData: type: string example: https://:acount.api-us1.com/api/3/deals/3057/dealCustomFieldData id: type: string example: '3057' isDisabled: type: boolean example: false default: true account: type: string example: '5' customerAccount: type: string example: '5' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 100 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/fieldValues: get: summary: ActiveCampaign Retrieve a Contact's Field Values description: '' operationId: retrieve-contact-field-values parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"fieldValues\": [\n {\n \"contact\": \"5\",\n \"field\": \"1\",\n \"value\": \"United States\",\n \"cdate\": \"2021-05-12T14:19:38-05:00\",\n \"udate\": \"2021-05-12T14:54:57-05:00\",\n \"created_by\": \"0\",\n \"updated_by\": \"0\",\n \"links\": {\n \"owner\": \"https://:account.api-us1.com/api/3/fieldValues/1/owner\",\n \"field\": \"https://:account.api-us1.com/api/3/fieldValues/1/field\"\n },\n \"id\": \"1\",\n \"owner\": \"5\"\n },\n {\n \"contact\": \"5\",\n \"field\": \"2\",\n \"value\": \"Software\",\n \"cdate\": \"2021-05-12T14:22:54-05:00\",\n \"udate\": \"2021-05-12T14:54:57-05:00\",\n \"created_by\": \"0\",\n \"updated_by\": \"0\",\n \"links\": {\n \"owner\": \"https://:account.api-us1.com/api/3/fieldValues/2/owner\",\n \"field\": \"https://:account.api-us1.com/api/3/fieldValues/2/field\"\n },\n \"id\": \"2\",\n \"owner\": \"5\"\n },\n {\n \"contact\": \"5\",\n \"field\": \"3\",\n \"value\": \"Yes\",\n \"cdate\": \"2021-05-12T14:34:19-05:00\",\n \"udate\": \"2021-05-12T14:54:57-05:00\",\n \"created_by\": \"0\",\n \"updated_by\": \"0\",\n \"links\": {\n \"owner\": \"https://:account.api-us1.com/api/3/fieldValues/3/owner\",\n \"field\": \"https://:account.api-us1.com/api/3/fieldValues/3/field\"\n },\n \"id\": \"3\",\n \"owner\": \"5\"\n },\n {\n \"contact\": \"5\",\n \"field\": \"4\",\n \"value\": \"Landing Page\",\n \"cdate\": \"2021-05-12T14:34:56-05:00\",\n \"udate\": \"2021-05-12T14:54:57-05:00\",\n \"created_by\": \"0\",\n \"updated_by\": \"0\",\n \"links\": {\n \"owner\": \"https://:account.api-us1.com/api/3/fieldValues/4/owner\",\n \"field\": \"https://:account.api-us1.com/api/3/fieldValues/4/field\"\n },\n \"id\": \"4\",\n \"owner\": \"5\"\n },\n {\n \"contact\": \"5\",\n \"field\": \"5\",\n \"value\": \"2021-05-02\",\n \"cdate\": \"2021-05-12T14:36:26-05:00\",\n \"udate\": \"2021-05-19T10:34:19-05:00\",\n \"created_by\": \"0\",\n \"updated_by\": \"0\",\n \"links\": {\n \"owner\": \"https://:account.api-us1.com/api/3/fieldValues/5/owner\",\n \"field\": \"https://:account.api-us1.com/api/3/fieldValues/5/field\"\n },\n \"id\": \"5\",\n \"owner\": \"5\"\n },\n {\n \"contact\": \"5\",\n \"field\": \"7\",\n \"value\": \"Director\",\n \"cdate\": \"2021-05-12T14:39:00-05:00\",\n \"udate\": \"2021-05-12T14:54:57-05:00\",\n \"created_by\": \"0\",\n \"updated_by\": \"0\",\n \"links\": {\n \"owner\": \"https://:account.api-us1.com/api/3/fieldValues/6/owner\",\n \"field\": \"https://:account.api-us1.com/api/3/fieldValues/6/field\"\n },\n \"id\": \"6\",\n \"owner\": \"5\"\n }\n ]\n}" schema: type: object properties: fieldValues: type: array items: type: object properties: contact: type: string example: '5' field: type: string example: '1' value: type: string example: United States cdate: type: string example: '2021-05-12T14:19:38-05:00' udate: type: string example: '2021-05-12T14:54:57-05:00' created_by: type: string example: '0' updated_by: type: string example: '0' links: type: object properties: owner: type: string example: https://:account.api-us1.com/api/3/fieldValues/1/owner field: type: string example: https://:account.api-us1.com/api/3/fieldValues/1/field id: type: string example: '1' owner: type: string example: '5' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 100 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/geoIps: get: summary: ActiveCampaign Retrieve a Contacts List of Geo-ips description: '' operationId: retrieve-contact-geo-ips parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n\t\"geoIps\": [{\n\t\t\"contact\": \"49\",\n\t\t\"campaignid\": \"11\",\n\t\t\"messageid\": \"12\",\n\t\t\"geoaddrid\": \"2\",\n\t\t\"ip4\": \"1123637995\",\n\t\t\"tstamp\": \"2021-05-12T11:10:06-05:00\",\n\t\t\"links\": {\n\t\t\t\"geoAddress\": \"https://:account.api-us1.com/api/3/geoIps/4/geoAddress\"\n\t\t},\n\t\t\"id\": \"4\",\n\t\t\"geoAddress\": \"2\"\n\t}]\n}" schema: type: object properties: geoIps: type: array items: type: object properties: contact: type: string example: '49' campaignid: type: string example: '11' messageid: type: string example: '12' geoaddrid: type: string example: '2' ip4: type: string example: '1123637995' tstamp: type: string example: '2021-05-12T11:10:06-05:00' links: type: object properties: geoAddress: type: string example: https://:account.api-us1.com/api/3/geoIps/4/geoAddress id: type: string example: '4' geoAddress: type: string example: '2' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 100 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/notes: get: summary: ActiveCampaign Retrieve a Contacts Notes description: '' operationId: retrieve-contact-notes parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"notes\": [\n {\n \"relid\": \"7\",\n \"reltype\": \"Subscriber\",\n \"userid\": \"1\",\n \"is_draft\": \"0\",\n \"cdate\": \"2022-02-04T14:21:28-06:00\",\n \"mdate\": \"2022-02-04T14:21:28-06:00\",\n \"note\": \"Here is a note!\",\n \"links\": {\n \"activities\": \"https://:account.api-us1.com/api/3/notes/1/activities\",\n \"user\": \"https://:account.api-us1.com/api/3/notes/1/user\",\n \"mentions\": \"https://:account.api-us1.com/api/3/notes/1/mentions\",\n \"notes\": \"https://:account.api-us1.com/api/3/notes/1/notes\",\n \"owner\": \"https://:account.api-us1.com/api/3/notes/1/owner\"\n },\n \"id\": \"1\",\n \"user\": \"1\",\n \"owner\": {\n \"type\": \"contact\",\n \"id\": \"7\"\n }\n }\n ]\n}" schema: type: object properties: notes: type: array items: type: object properties: relid: type: string example: '7' reltype: type: string example: Subscriber userid: type: string example: '1' is_draft: type: string example: '0' cdate: type: string example: '2022-02-04T14:21:28-06:00' mdate: type: string example: '2022-02-04T14:21:28-06:00' note: type: string example: Here is a note! links: type: object properties: activities: type: string example: https://:account.api-us1.com/api/3/notes/1/activities user: type: string example: https://:account.api-us1.com/api/3/notes/1/user mentions: type: string example: https://:account.api-us1.com/api/3/notes/1/mentions notes: type: string example: https://:account.api-us1.com/api/3/notes/1/notes owner: type: string example: https://:account.api-us1.com/api/3/notes/1/owner id: type: string example: '1' user: type: string example: '1' owner: type: object properties: type: type: string example: contact id: type: string example: '7' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 100 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/organization: get: summary: ActiveCampaign Retrieve a Contacts Organization description: '' operationId: retrieve-contact-organization parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"organization\": {\n \"name\": \"M Corp\",\n \"created_timestamp\": \"2021-05-21T16:15:47-05:00\",\n \"updated_timestamp\": \"2021-08-24T06:28:56-05:00\",\n \"userid\": \"1\",\n \"id\": \"9\",\n \"owner\": \"1\"\n }\n}" schema: type: object properties: organization: type: object properties: name: type: string example: M Corp created_timestamp: type: string example: '2021-05-21T16:15:47-05:00' updated_timestamp: type: string example: '2021-08-24T06:28:56-05:00' userid: type: string example: '1' id: type: string example: '9' owner: type: string example: '1' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 100 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/plusAppend: get: summary: ActiveCampaign Retrieve a Contacts Plus Append description: '' operationId: retrieve-contact-plus-append parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"plusAppend\": {\n \"contact\": \"3\",\n \"last_updated_rapleaf\": null,\n \"last_updated_fliptop\": null,\n \"last_updated_fullcontact\": null,\n \"imageUrl\": \"https://img.fullcontact.com/static/ece148ad832u8f2c66f23442_3e5923f243234234cec57395be553465p96u9345u69u3456354345634\",\n \"membershipsFacebook\": \"\",\n \"membershipsTwitter\": \"https://twitter.com/twitterHandleHere\",\n \"membershipsLinkedin\": \"\",\n \"links\": {\n \"contact\": \"https://:account.api-us1.com/api/3/plusAppends/2/contact\"\n },\n \"id\": \"2\"\n }\n}" schema: type: object properties: plusAppend: type: object properties: contact: type: string example: '3' last_updated_rapleaf: {} last_updated_fliptop: {} last_updated_fullcontact: {} imageUrl: type: string example: https://img.fullcontact.com/static/ece148ad832u8f2c66f23442_3e5923f243234234cec57395be553465p96u9345u69u3456354345634 membershipsFacebook: type: string example: '' membershipsTwitter: type: string example: https://twitter.com/twitterHandleHere membershipsLinkedin: type: string example: '' links: type: object properties: contact: type: string example: https://:account.api-us1.com/api/3/plusAppends/2/contact id: type: string example: '2' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 100 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/trackingLogs: get: summary: ActiveCampaign Retrieve a Contacts Tracking Logs description: '' operationId: retrieve-contact-tracking-logs parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"trackingLogs\": []\n}" schema: type: object properties: trackingLogs: type: array '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 100 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/accountContacts: get: summary: ActiveCampaign Retrieve a Contacts Account Contacts description: '' operationId: retrieve-contact-account-contacts parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"accountContacts\": [\n {\n \"account\": \"9\",\n \"contact\": \"7\",\n \"jobTitle\": \"\",\n \"createdTimestamp\": \"2021-05-21T16:30:23-05:00\",\n \"updatedTimestamp\": \"2021-05-21T16:30:23-05:00\",\n \"links\": {\n \"account\": \"https://:account.api-us1.com/api/3/accountContacts/7/account\",\n \"contact\": \"https://:account.api-us1.com/api/3/accountContacts/7/contact\"\n },\n \"id\": \"7\"\n }\n ]\n}" schema: type: object properties: accountContacts: type: array items: type: object properties: account: type: string example: '9' contact: type: string example: '7' jobTitle: type: string example: '' createdTimestamp: type: string example: '2021-05-21T16:30:23-05:00' updatedTimestamp: type: string example: '2021-05-21T16:30:23-05:00' links: type: object properties: account: type: string example: https://:account.api-us1.com/api/3/accountContacts/7/account contact: type: string example: https://:account.api-us1.com/api/3/accountContacts/7/contact id: type: string example: '7' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 100 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{id}/automationEntryCounts: get: summary: ActiveCampaign Retrieve a Contacts Automation Entry Counts description: '' operationId: retrieve-contact-automation-entry-counts parameters: - name: id in: path description: ID of the contact schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"automationEntryCounts\": [\n {\n \"id\": \"2\",\n \"name\": \"Pages: Lead Delivery\",\n \"status\": \"1\",\n \"hidden\": \"0\",\n \"contactEntryCount\": \"1\"\n },\n {\n \"id\": \"4\",\n \"name\": \"Lead Scoring\",\n \"status\": \"1\",\n \"hidden\": \"0\",\n \"contactEntryCount\": \"2\"\n },\n {\n \"id\": \"7\",\n \"name\": \"Foo: Bar Creation\",\n \"status\": \"1\",\n \"hidden\": \"0\",\n \"contactEntryCount\": \"1\"\n }\n ]\n}" schema: type: object properties: automationEntryCounts: type: array items: type: object properties: id: type: string example: '2' name: type: string example: 'Pages: Lead Delivery' status: type: string example: '1' hidden: type: string example: '0' contactEntryCount: type: string example: '1' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for Subscriber with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for Subscriber with id 100 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contactAutomations: post: summary: ActiveCampaign Add a Contact to an Automation description: '' operationId: create-new-contactautomation requestBody: content: application/json: schema: type: object properties: contactAutomation: properties: contact: type: integer description: Contact ID of the Contact, to be linked to the contactAutomation format: int32 automation: type: integer description: Automation ID of the automation, to be linked to the contactAutomation format: int32 required: - contact - automation type: object examples: Request Example: value: contactAutomation: contact: '117' automation: '42' responses: '201': description: '201' content: application/json: examples: Result: value: "{\n \"contacts\": [\n {\n \"cdate\": \"2018-08-06T16:26:06-05:00\",\n \"email\": \"johndoe@example.com\",\n \"phone\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"orgid\": \"0\",\n \"segmentio_id\": \"\",\n \"bounced_hard\": \"0\",\n \"bounced_soft\": \"0\",\n \"bounced_date\": null,\n \"ip\": \"2130706433\",\n \"ua\": null,\n \"hash\": \"054aa0acede49e07a844420c879b3c30\",\n \"socialdata_lastcheck\": null,\n \"email_local\": \"\",\n \"email_domain\": \"\",\n \"sentcnt\": \"0\",\n \"rating_tstamp\": null,\n \"gravatar\": \"0\",\n \"deleted\": \"0\",\n \"anonymized\": \"0\",\n \"adate\": null,\n \"udate\": null,\n \"edate\": null,\n \"deleted_at\": null,\n \"created_utc_timestamp\": \"2018-09-21 12:04:40\",\n \"updated_utc_timestamp\": \"2018-09-21 12:04:40\",\n \"links\": {\n \"bounceLogs\": \"https://:account.api-us1.com/api/:version/contacts/64/bounceLogs\",\n \"contactAutomations\": \"https://:account.api-us1.com/api/:version/contacts/64/contactAutomations\",\n \"contactData\": \"https://:account.api-us1.com/api/:version/contacts/64/contactData\",\n \"contactGoals\": \"https://:account.api-us1.com/api/:version/contacts/64/contactGoals\",\n \"contactLists\": \"https://:account.api-us1.com/api/:version/contacts/64/contactLists\",\n \"contactLogs\": \"https://:account.api-us1.com/api/:version/contacts/64/contactLogs\",\n \"contactTags\": \"https://:account.api-us1.com/api/:version/contacts/64/contactTags\",\n \"contactDeals\": \"https://:account.api-us1.com/api/:version/contacts/64/contactDeals\",\n \"deals\": \"https://:account.api-us1.com/api/:version/contacts/64/deals\",\n \"fieldValues\": \"https://:account.api-us1.com/api/:version/contacts/64/fieldValues\",\n \"geoIps\": \"https://:account.api-us1.com/api/:version/contacts/64/geoIps\",\n \"notes\": \"https://:account.api-us1.com/api/:version/contacts/64/notes\",\n \"organization\": \"https://:account.api-us1.com/api/:version/contacts/64/organization\",\n \"plusAppend\": \"https://:account.api-us1.com/api/:version/contacts/64/plusAppend\",\n \"trackingLogs\": \"https://:account.api-us1.com/api/:version/contacts/64/trackingLogs\",\n \"scoreValues\": \"https://:account.api-us1.com/api/:version/contacts/64/scoreValues\"\n },\n \"id\": \"64\",\n \"organization\": null\n }\n ],\n \"contactAutomation\": {\n \"contact\": \"64\",\n \"seriesid\": \"2\",\n \"startid\": 0,\n \"status\": 1,\n \"lastblock\": \"4\",\n \"completedElements\": \"1\",\n \"totalElements\": \"2\",\n \"completed\": 0,\n \"completeValue\": 50,\n \"links\": {\n \"automation\": \"https://:account.api-us1.com/api/:version/contactAutomations/3/automation\",\n \"contact\": \"https://:account.api-us1.com/api/:version/contactAutomations/3/contact\",\n \"contactGoals\": \"https://:account.api-us1.com/api/:version/contactAutomations/3/contactGoals\"\n },\n \"id\": \"3\",\n \"automation\": \"2\"\n }\n}" schema: type: object properties: contacts: type: array items: type: object properties: cdate: type: string example: '2018-08-06T16:26:06-05:00' email: type: string example: johndoe@example.com phone: type: string example: '' firstName: type: string example: '' lastName: type: string example: '' orgid: type: string example: '0' segmentio_id: type: string example: '' bounced_hard: type: string example: '0' bounced_soft: type: string example: '0' bounced_date: {} ip: type: string example: '2130706433' ua: {} hash: type: string example: 054aa0acede49e07a844420c879b3c30 socialdata_lastcheck: {} email_local: type: string example: '' email_domain: type: string example: '' sentcnt: type: string example: '0' rating_tstamp: {} gravatar: type: string example: '0' deleted: type: string example: '0' anonymized: type: string example: '0' adate: {} udate: {} edate: {} deleted_at: {} created_utc_timestamp: type: string example: '2018-09-21 12:04:40' updated_utc_timestamp: type: string example: '2018-09-21 12:04:40' links: type: object properties: bounceLogs: type: string example: https://:account.api-us1.com/api/:version/contacts/64/bounceLogs contactAutomations: type: string example: https://:account.api-us1.com/api/:version/contacts/64/contactAutomations contactData: type: string example: https://:account.api-us1.com/api/:version/contacts/64/contactData contactGoals: type: string example: https://:account.api-us1.com/api/:version/contacts/64/contactGoals contactLists: type: string example: https://:account.api-us1.com/api/:version/contacts/64/contactLists contactLogs: type: string example: https://:account.api-us1.com/api/:version/contacts/64/contactLogs contactTags: type: string example: https://:account.api-us1.com/api/:version/contacts/64/contactTags contactDeals: type: string example: https://:account.api-us1.com/api/:version/contacts/64/contactDeals deals: type: string example: https://:account.api-us1.com/api/:version/contacts/64/deals fieldValues: type: string example: https://:account.api-us1.com/api/:version/contacts/64/fieldValues geoIps: type: string example: https://:account.api-us1.com/api/:version/contacts/64/geoIps notes: type: string example: https://:account.api-us1.com/api/:version/contacts/64/notes organization: type: string example: https://:account.api-us1.com/api/:version/contacts/64/organization plusAppend: type: string example: https://:account.api-us1.com/api/:version/contacts/64/plusAppend trackingLogs: type: string example: https://:account.api-us1.com/api/:version/contacts/64/trackingLogs scoreValues: type: string example: https://:account.api-us1.com/api/:version/contacts/64/scoreValues id: type: string example: '64' organization: {} contactAutomation: type: object properties: contact: type: string example: '64' seriesid: type: string example: '2' startid: type: integer example: 0 default: 0 status: type: integer example: 1 default: 0 lastblock: type: string example: '4' completedElements: type: string example: '1' totalElements: type: string example: '2' completed: type: integer example: 0 default: 0 completeValue: type: integer example: 50 default: 0 links: type: object properties: automation: type: string example: https://:account.api-us1.com/api/:version/contactAutomations/3/automation contact: type: string example: https://:account.api-us1.com/api/:version/contactAutomations/3/contact contactGoals: type: string example: https://:account.api-us1.com/api/:version/contactAutomations/3/contactGoals id: type: string example: '3' automation: type: string example: '2' '403': description: '403' content: application/json: examples: Result: value: "{\n \"message\": \"Could not create SubscriberSeries\"\n}" schema: type: object properties: message: type: string example: Could not create SubscriberSeries deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK get: summary: ActiveCampaign List All Automations a Contact is in description: '' operationId: list-all-contact-automations responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"contactAutomations\": [\n {\n \"contact\": \"10003\",\n \"seriesid\": \"1\",\n \"startid\": \"0\",\n \"status\": \"2\",\n \"batchid\": null,\n \"adddate\": \"2018-11-16T02:32:33-06:00\",\n \"remdate\": \"2018-11-16T02:32:33-06:00\",\n \"timespan\": \"0\",\n \"lastblock\": \"1\",\n \"lastlogid\": \"0\",\n \"lastdate\": \"2018-11-16T02:32:33-06:00\",\n \"completedElements\": \"0\",\n \"totalElements\": \"1\",\n \"completed\": 1,\n \"completeValue\": 100,\n \"links\": {\n \"automation\": \"https://:account.api-us1.com/api/:version/contactAutomations/1/automation\",\n \"contact\": \"https://:account.api-us1.com/api/:version/contactAutomations/1/contact\",\n \"contactGoals\": \"https://:account.api-us1.com/api/:version/contactAutomations/1/contactGoals\"\n },\n \"id\": \"1\",\n \"automation\": \"1\"\n }\n ],\n \"meta\": {\n \"total\": \"1\",\n \"showcase_stats\": []\n }\n}" schema: type: object properties: contactAutomations: type: array items: type: object properties: contact: type: string example: '10003' seriesid: type: string example: '1' startid: type: string example: '0' status: type: string example: '2' batchid: {} adddate: type: string example: '2018-11-16T02:32:33-06:00' remdate: type: string example: '2018-11-16T02:32:33-06:00' timespan: type: string example: '0' lastblock: type: string example: '1' lastlogid: type: string example: '0' lastdate: type: string example: '2018-11-16T02:32:33-06:00' completedElements: type: string example: '0' totalElements: type: string example: '1' completed: type: integer example: 1 default: 0 completeValue: type: integer example: 100 default: 0 links: type: object properties: automation: type: string example: https://:account.api-us1.com/api/:version/contactAutomations/1/automation contact: type: string example: https://:account.api-us1.com/api/:version/contactAutomations/1/contact contactGoals: type: string example: https://:account.api-us1.com/api/:version/contactAutomations/1/contactGoals id: type: string example: '1' automation: type: string example: '1' meta: type: object properties: total: type: string example: '1' showcase_stats: type: array deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contactAutomations/{id}: get: summary: ActiveCampaign Retrieve an Automation a Contact is in description: '' operationId: retrieve-a-contactautomation parameters: - name: id in: path description: ID of the contactAutomation to retrieve schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"contactAutomation\": {\n \"contact\": \"110\",\n \"seriesid\": \"2\",\n \"startid\": \"0\",\n \"status\": \"2\",\n \"batchid\": null,\n \"adddate\": \"2018-09-19T09:44:26-05:00\",\n \"remdate\": \"2018-09-19T09:44:26-05:00\",\n \"timespan\": \"0\",\n \"lastblock\": \"5\",\n \"lastlogid\": \"2\",\n \"lastdate\": \"2018-09-19T09:44:26-05:00\",\n \"completedElements\": \"1\",\n \"totalElements\": \"2\",\n \"completed\": 1,\n \"completeValue\": 100,\n \"links\": {\n \"automation\": \"https://:account.api-us1.com/api/:version/contactAutomations/2/automation\",\n \"contact\": \"https://:account.api-us1.com/api/:version/contactAutomations/2/contact\",\n \"contactGoals\": \"https://:account.api-us1.com/api/:version/contactAutomations/2/contactGoals\"\n },\n \"id\": \"2\",\n \"automation\": \"2\"\n }\n}" schema: type: object properties: contactAutomation: type: object properties: contact: type: string example: '110' seriesid: type: string example: '2' startid: type: string example: '0' status: type: string example: '2' batchid: {} adddate: type: string example: '2018-09-19T09:44:26-05:00' remdate: type: string example: '2018-09-19T09:44:26-05:00' timespan: type: string example: '0' lastblock: type: string example: '5' lastlogid: type: string example: '2' lastdate: type: string example: '2018-09-19T09:44:26-05:00' completedElements: type: string example: '1' totalElements: type: string example: '2' completed: type: integer example: 1 default: 0 completeValue: type: integer example: 100 default: 0 links: type: object properties: automation: type: string example: https://:account.api-us1.com/api/:version/contactAutomations/2/automation contact: type: string example: https://:account.api-us1.com/api/:version/contactAutomations/2/contact contactGoals: type: string example: https://:account.api-us1.com/api/:version/contactAutomations/2/contactGoals id: type: string example: '2' automation: type: string example: '2' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for SubscriberSeries with id 3\"\n}" schema: type: object properties: message: type: string example: No Result found for SubscriberSeries with id 3 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: summary: ActiveCampaign Remove a Contact from an Automation description: '' operationId: delete-a-contactautomation parameters: - name: id in: path description: ID of the contactAutomation to delete schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: '{}' schema: type: object properties: {} '403': description: '403' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for SubscriberSeries with id 3\"\n}" schema: type: object properties: message: type: string example: No Result found for SubscriberSeries with id 3 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contactTags: post: summary: ActiveCampaign Add a Tag to Contact description: Create a contact tag object operationId: create-contact-tag requestBody: content: application/json: schema: type: object properties: contactTag: properties: contact: type: integer description: The id of the Contact default: 1 format: int32 tag: type: integer description: The id of the tag default: 20 format: int32 required: [] type: object examples: Example 1: value: contactTag: contact: '1' tag: '20' responses: '201': description: '201' content: application/json: examples: Result: value: "{\n\t\"contactTag\": {\n\t\t\"cdate\": \"2017-06-08T16:11:53-05:00\",\n\t\t\"contact\":\"1\",\n\t\t\"id\":\"1\",\n\t\t\"links\":{\n\t\t\t\"contact\":\"/1/contact\",\n\t\t\t\"tag\":\"/1/tag\"\n\t\t},\n\t\t\"tag\":\"20\"\n\t}\n}" schema: type: object properties: contactTag: type: object properties: cdate: type: string example: '2017-06-08T16:11:53-05:00' contact: type: string example: '1' id: type: string example: '1' links: type: object properties: contact: type: string example: /1/contact tag: type: string example: /1/tag tag: type: string example: '20' '404': description: '404' content: application/json: examples: Result: value: "{\n \"errors\":[\n {\n \"status\":404,\n \"title\":\"Not Found\",\n \"detail\":\"Contact not found\"\n }\n ]\n}" schema: type: object properties: errors: type: array items: type: object properties: status: type: integer example: 404 default: 0 title: type: string example: Not Found detail: type: string example: Contact not found '422': description: '422' content: application/json: examples: Result: value: "{\n \"errors\":[\n {\n \"status\":422,\n \"title\":\"Missing attribute\",\n \"source\":{\n \"pointer\":\"/data/attributes/contact\"\n }\n }\n ]\n}" schema: type: object properties: errors: type: array items: type: object properties: status: type: integer example: 422 default: 0 title: type: string example: Missing attribute source: type: object properties: pointer: type: string example: /data/attributes/contact deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contactTags/{id}: delete: summary: ActiveCampaign Remove a Tag from a Contact description: Delete a contact tag object operationId: remove-a-contacts-tag parameters: - name: id in: path description: The contactTag id schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: '{}' schema: type: object properties: {} '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\":\"No Result found for SubscriberTag with id 1\"\n}" schema: type: object properties: message: type: string example: No Result found for SubscriberTag with id 1 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contactDeals: post: summary: ActiveCampaign Create a Secondary Contact description: Create a new secondary contact for a deal operationId: create-a-secondary-contact requestBody: content: application/json: schema: type: object properties: contactDeal: properties: deal: type: string description: Deal's id contact: type: string description: Contact's id required: - deal - contact type: object examples: Request Example: value: contactDeal: contact: 1 deal: 2 responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"deals\": [\n {\n \"hash\": \"c7b5a271\",\n \"owner\": \"1\",\n \"contact\": \"2\",\n \"organization\": null,\n \"group\": \"1\",\n \"stage\": \"1\",\n \"title\": \"deal1\",\n \"description\": \"\",\n \"percent\": \"0\",\n \"cdate\": \"2018-10-31T13:33:09-05:00\",\n \"mdate\": \"2018-10-31T13:33:09-05:00\",\n \"nexttaskid\": null,\n \"value\": \"10000\",\n \"currency\": \"usd\",\n \"winProbability\": null,\n \"winProbabilityMdate\": \"2018-10-31T13:33:09-05:00\",\n \"status\": \"0\",\n \"activitycount\": \"1\",\n \"nextdealid\": \"2\",\n \"edate\": null,\n \"links\": {\n \"dealActivities\": \"/api/3/deals/2/dealActivities\",\n \"contact\": \"/api/3/deals/2/contact\",\n \"contactDeals\": \"/api/3/deals/2/contactDeals\",\n \"group\": \"/api/3/deals/2/group\",\n \"nextTask\": \"/api/3/deals/2/nextTask\",\n \"notes\": \"/api/3/deals/2/notes\",\n \"organization\": \"/api/3/deals/2/organization\",\n \"owner\": \"/api/3/deals/2/owner\",\n \"scoreValues\": \"/api/3/deals/2/scoreValues\",\n \"stage\": \"/api/3/deals/2/stage\",\n \"tasks\": \"/api/3/deals/2/tasks\",\n \"dealCustomFieldData\": \"/api/3/deals/2/dealCustomFieldData\"\n },\n \"id\": \"2\",\n \"isDisabled\": false\n }\n ],\n \"contactDeal\": {\n \"contact\": 3,\n \"deal\": 2,\n \"cdate\": \"2019-02-25T09:00:02-06:00\",\n \"links\": {\n \"deal\": \"/api/3/contactDeals/3/deal\",\n \"contact\": \"/api/3/contactDeals/3/contact\"\n },\n \"id\": \"3\"\n }\n}" schema: type: object properties: deals: type: array items: type: object properties: hash: type: string example: c7b5a271 owner: type: string example: '1' contact: type: string example: '2' organization: {} group: type: string example: '1' stage: type: string example: '1' title: type: string example: deal1 description: type: string example: '' percent: type: string example: '0' cdate: type: string example: '2018-10-31T13:33:09-05:00' mdate: type: string example: '2018-10-31T13:33:09-05:00' nexttaskid: {} value: type: string example: '10000' currency: type: string example: usd winProbability: {} winProbabilityMdate: type: string example: '2018-10-31T13:33:09-05:00' status: type: string example: '0' activitycount: type: string example: '1' nextdealid: type: string example: '2' edate: {} links: type: object properties: dealActivities: type: string example: /api/3/deals/2/dealActivities contact: type: string example: /api/3/deals/2/contact contactDeals: type: string example: /api/3/deals/2/contactDeals group: type: string example: /api/3/deals/2/group nextTask: type: string example: /api/3/deals/2/nextTask notes: type: string example: /api/3/deals/2/notes organization: type: string example: /api/3/deals/2/organization owner: type: string example: /api/3/deals/2/owner scoreValues: type: string example: /api/3/deals/2/scoreValues stage: type: string example: /api/3/deals/2/stage tasks: type: string example: /api/3/deals/2/tasks dealCustomFieldData: type: string example: /api/3/deals/2/dealCustomFieldData id: type: string example: '2' isDisabled: type: boolean example: false default: true contactDeal: type: object properties: contact: type: integer example: 3 default: 0 deal: type: integer example: 2 default: 0 cdate: type: string example: '2019-02-25T09:00:02-06:00' links: type: object properties: deal: type: string example: /api/3/contactDeals/3/deal contact: type: string example: /api/3/contactDeals/3/contact id: type: string example: '3' '422': description: '422' content: application/json: examples: already exists: value: "{\n \"errors\": [\n {\n \"title\": \"The given contact is already associated to the deal\",\n \"detail\": \"\",\n \"code\": \"field_invalid\",\n \"source\": {\n \"pointer\": \"/data/attributes/contact\"\n }\n }\n ]\n}" schema: type: object properties: errors: type: array items: type: object properties: title: type: string example: The given contact is already associated to the deal detail: type: string example: '' code: type: string example: field_invalid source: type: object properties: pointer: type: string example: /data/attributes/contact text/plain: examples: required field missing: value: "{\n \"errors\": [\n {\n \"title\": \"The contactDeal contact was not provided.\",\n \"detail\": \"\",\n \"code\": \"field_missing\",\n \"source\": {\n \"pointer\": \"/data/attributes/contact\"\n }\n }\n ]\n}" schema: type: object properties: errors: type: array items: type: object properties: title: type: string example: The contactDeal contact was not provided. detail: type: string example: '' code: type: string example: field_missing source: type: object properties: pointer: type: string example: /data/attributes/contact deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK get: summary: ActiveCampaign List All Secondary Contacts description: Retrieve all secondary contacts operationId: list-all-secondary-contacts responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"contactDeals\": [\n {\n \"deal\": \"2\",\n \"contact\": \"1\",\n \"cdate\": \"2019-02-25T08:16:56-06:00\",\n \"links\": {\n \"deal\": \"/api/3/contactDeals/1/deal\",\n \"contact\": \"/api/3/contactDeals/1/contact\"\n },\n \"id\": \"1\"\n }\n ],\n \"meta\": {\n \"total\": \"1\"\n }\n}" schema: type: object properties: contactDeals: type: array items: type: object properties: deal: type: string example: '2' contact: type: string example: '1' cdate: type: string example: '2019-02-25T08:16:56-06:00' links: type: object properties: deal: type: string example: /api/3/contactDeals/1/deal contact: type: string example: /api/3/contactDeals/1/contact id: type: string example: '1' meta: type: object properties: total: type: string example: '1' '400': description: '400' content: application/json: examples: Result: value: '{}' schema: type: object properties: {} deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contactDeals/{id}: get: summary: ActiveCampaign Retrieve a Secondary Contact description: Retrieve an existing secondary contact operationId: retrieve-a-secondary-contact parameters: - name: id in: path description: Secondary Contact's id schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"contactDeal\": {\n \"deal\": \"2\",\n \"contact\": \"1\",\n \"cdate\": \"2019-02-25T08:16:56-06:00\",\n \"links\": {\n \"deal\": \"/api/3/contactDeals/1/deal\",\n \"contact\": \"/api/3/contactDeals/1/contact\"\n },\n \"id\": \"1\"\n }\n}" schema: type: object properties: contactDeal: type: object properties: deal: type: string example: '2' contact: type: string example: '1' cdate: type: string example: '2019-02-25T08:16:56-06:00' links: type: object properties: deal: type: string example: /api/3/contactDeals/1/deal contact: type: string example: /api/3/contactDeals/1/contact id: type: string example: '1' '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for SubscriberDeal with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for SubscriberDeal with id 100 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK put: summary: ActiveCampaign Update a Secondary Contact description: Update an existing secondary contact operationId: update-a-secondary-contact parameters: - name: id in: path description: Secondary Contact's id schema: type: integer format: int32 required: true requestBody: content: application/json: schema: type: object properties: contactDeal: properties: deal: type: string description: Deal's id contact: type: string description: Contact's id role: type: integer description: role id to associate with the contact format: int32 required: [] type: object examples: Request Example: value: contactDeal: contact: 4 deal: 1 role: 1 responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"deals\": [\n {\n \"hash\": \"c7b5a271\",\n \"owner\": \"1\",\n \"contact\": \"2\",\n \"organization\": null,\n \"group\": \"1\",\n \"stage\": \"1\",\n \"title\": \"deal1\",\n \"description\": \"\",\n \"percent\": \"0\",\n \"cdate\": \"2018-10-31T13:33:09-05:00\",\n \"mdate\": \"2018-10-31T13:33:09-05:00\",\n \"nexttaskid\": null,\n \"value\": \"10000\",\n \"currency\": \"usd\",\n \"winProbability\": null,\n \"winProbabilityMdate\": \"2018-10-31T13:33:09-05:00\",\n \"status\": \"0\",\n \"activitycount\": \"1\",\n \"nextdealid\": \"2\",\n \"edate\": null,\n \"links\": {\n \"dealActivities\": \"/api/3/deals/2/dealActivities\",\n \"contact\": \"/api/3/deals/2/contact\",\n \"contactDeals\": \"/api/3/deals/2/contactDeals\",\n \"group\": \"/api/3/deals/2/group\",\n \"nextTask\": \"/api/3/deals/2/nextTask\",\n \"notes\": \"/api/3/deals/2/notes\",\n \"organization\": \"/api/3/deals/2/organization\",\n \"owner\": \"/api/3/deals/2/owner\",\n \"scoreValues\": \"/api/3/deals/2/scoreValues\",\n \"stage\": \"/api/3/deals/2/stage\",\n \"tasks\": \"/api/3/deals/2/tasks\",\n \"dealCustomFieldData\": \"/api/3/deals/2/dealCustomFieldData\"\n },\n \"id\": \"2\",\n \"isDisabled\": false\n }\n ],\n \"contactDeal\": {\n \"deal\": \"2\",\n \"contact\": 4,\n \"role\": 1,\n \"cdate\": \"2019-02-25T08:16:56-06:00\",\n \"links\": {\n \"deal\": \"/api/3/contactDeals/1/deal\",\n \"contact\": \"/api/3/contactDeals/1/contact\"\n },\n \"id\": \"1\"\n }\n}" schema: type: object properties: deals: type: array items: type: object properties: hash: type: string example: c7b5a271 owner: type: string example: '1' contact: type: string example: '2' organization: {} group: type: string example: '1' stage: type: string example: '1' title: type: string example: deal1 description: type: string example: '' percent: type: string example: '0' cdate: type: string example: '2018-10-31T13:33:09-05:00' mdate: type: string example: '2018-10-31T13:33:09-05:00' nexttaskid: {} value: type: string example: '10000' currency: type: string example: usd winProbability: {} winProbabilityMdate: type: string example: '2018-10-31T13:33:09-05:00' status: type: string example: '0' activitycount: type: string example: '1' nextdealid: type: string example: '2' edate: {} links: type: object properties: dealActivities: type: string example: /api/3/deals/2/dealActivities contact: type: string example: /api/3/deals/2/contact contactDeals: type: string example: /api/3/deals/2/contactDeals group: type: string example: /api/3/deals/2/group nextTask: type: string example: /api/3/deals/2/nextTask notes: type: string example: /api/3/deals/2/notes organization: type: string example: /api/3/deals/2/organization owner: type: string example: /api/3/deals/2/owner scoreValues: type: string example: /api/3/deals/2/scoreValues stage: type: string example: /api/3/deals/2/stage tasks: type: string example: /api/3/deals/2/tasks dealCustomFieldData: type: string example: /api/3/deals/2/dealCustomFieldData id: type: string example: '2' isDisabled: type: boolean example: false default: true contactDeal: type: object properties: deal: type: string example: '2' contact: type: integer example: 4 default: 0 role: type: integer example: 1 default: 0 cdate: type: string example: '2019-02-25T08:16:56-06:00' links: type: object properties: deal: type: string example: /api/3/contactDeals/1/deal contact: type: string example: /api/3/contactDeals/1/contact id: type: string example: '1' '404': description: '404' content: text/plain: examples: Result: value: "{\n \"message\": \"No Result found for SubscriberDeal with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for SubscriberDeal with id 100 '422': description: '422' content: application/json: examples: already exists: value: "{\n \"errors\": [\n {\n \"title\": \"The given contact is already associated to the deal\",\n \"detail\": \"\",\n \"code\": \"field_invalid\",\n \"source\": {\n \"pointer\": \"/data/attributes/contact\"\n }\n }\n ]\n}" schema: type: object properties: errors: type: array items: type: object properties: title: type: string example: The given contact is already associated to the deal detail: type: string example: '' code: type: string example: field_invalid source: type: object properties: pointer: type: string example: /data/attributes/contact text/plain: examples: relation does not exist: value: "{\n \"errors\": [\n {\n \"title\": \"The related contact does not exist.\",\n \"detail\": \"\",\n \"code\": \"related_missing\",\n \"source\": {\n \"pointer\": \"/data/attributes/contact\"\n }\n }\n ]\n}" schema: type: object properties: errors: type: array items: type: object properties: title: type: string example: The related contact does not exist. detail: type: string example: '' code: type: string example: related_missing source: type: object properties: pointer: type: string example: /data/attributes/contact deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: summary: ActiveCampaign Delete a Secondary Contact description: Delete an existing secondary contact operationId: delete-a-secondary-contact parameters: - name: id in: path description: Secondary Contact's id schema: type: integer format: int32 required: true responses: '200': description: '200' content: application/json: examples: Result: value: '{ }' schema: type: object properties: {} '404': description: '404' content: application/json: examples: Result: value: "{\n \"message\": \"No Result found for SubscriberDeal with id 100\"\n}" schema: type: object properties: message: type: string example: No Result found for SubscriberDeal with id 100 deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK /contacts/{contactId}/trackingLogs: get: summary: ActiveCampaign Get Contact's Tracking Logs/Events description: Get a log of events for a Contact operationId: get-contacts-tracking-logsevents parameters: - name: contactId in: path description: The Contact's ID schema: type: string required: true responses: '200': description: '200' content: application/json: examples: Result: value: "{\n \"trackingLogs\": [\n {\n \"subscriberid\": \"112\",\n \"type\": \"Another event\",\n \"value\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure do\",\n \"tstamp\": \"2022-09-27T12:39:59-05:00\",\n \"hash\": \"358a9a13d85efb7b888014ec57790efb6c13ab3a\",\n \"links\": {\n \"contact\": \"https://yourAccountName.api-us1.com/api/3/trackingLogs/12/contact\"\n },\n \"id\": \"12\",\n \"contact\": \"112\"\n },\n {\n \"subscriberid\": \"112\",\n \"type\": \"Yet Another Event\",\n \"value\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure do\",\n \"tstamp\": \"2022-09-27T13:35:01-05:00\",\n \"hash\": \"abc4307d06ff83df6869c24e86552dfada77277d\",\n \"links\": {\n \"contact\": \"https://yourAccountName.api-us1.com/api/3/trackingLogs/15/contact\"\n },\n \"id\": \"15\",\n \"contact\": \"112\"\n }\n ]\n}" schema: type: object properties: trackingLogs: type: array items: type: object properties: subscriberid: type: string example: '112' type: type: string example: Another event value: type: string example: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure do tstamp: type: string example: '2022-09-27T12:39:59-05:00' hash: type: string example: 358a9a13d85efb7b888014ec57790efb6c13ab3a links: type: object properties: contact: type: string example: https://yourAccountName.api-us1.com/api/3/trackingLogs/12/contact id: type: string example: '12' contact: type: string example: '112' deprecated: false tags: - Contacts x-microcks-operation: delay: 0 dispatcher: FALLBACK components: securitySchemes: ApiToken: type: apiKey name: Api-Token in: header description: Your ActiveCampaign API token