Create a company

With the createCompany mutation you can easily create a company in your Cycle workspace linked to external ids (hubpost, intercom, pipedrive, ...)

1. Create a company linked to external provider

mutation createCompany {
    createCompany(
        name: "my first company",
        domain: ""mycompany.com,
        productId: "<productId>",
        externalId: {
            customId: "customId1",
            zendeskId: "zendeskId1",
            hubspotId: "hubspotId1",
            intercomId: "intercomId1",
            pipedriveId: "pipedriveId1",
            snowflakeId: "snowflakeId1",
        },
    ) {
        id
    }
}

2. Create a company with attributes

Last updated