Integration API endpoints

Comments

2 comments

  • Tyler Lamparter Principal Product Manager
    Awesome Follow-up
    Engaged
    Top Contributor
    Answer Pro
    Celigo University Level 4: Legendary

    Adding some additional options here.

     

    To get flows associated with an integration, use:

    GET /integrations/<_integrationId>/flows

     

    To get connections associated with an integration, use:

    GET /integrations/<_integrationId>/connections

     

    To get exports associated with an integration, use:

    GET /integrations/<_integrationId>/exports

     

    To get imports associated with an integration, use:

    GET /integrations/<_integrationId>/imports

     

    To get users associated with an integration, use:

    GET /integrations/<_integrationId>/ashares
    0
  • Tyler Lamparter Principal Product Manager
    Awesome Follow-up
    Engaged
    Top Contributor
    Answer Pro
    Celigo University Level 4: Legendary

    You can also register and unregister connections to integrations via the following:

     

    To register a single connection to an integration, use the following api.

    PUT /integrations/<_integrationId>/connections/<_connectionId>/register

     

    To register multiple connections at one time to an integration, use the following api. The body is an array of connection ids that you want to register to the integration.

    PUT /integrations/<_integrationId>/connections/register

    [
    "<_connectionId>","<_connectionId>",...
    ]

     

    To unregister a connection from an integration, use the following endpoint.

    DELETE /integrations/<_integrationId>/connections/<_connectionId>/register
    0

Please sign in to leave a comment.