coldgust commented on issue #6155:
URL: 
https://github.com/apache/incubator-devlake/issues/6155#issuecomment-1753154042

   @ningjunwei You can try to create a connection using api
   ```text
   curl --location 
'http://{devlake-backend-host}:{port}/plugins/teambition/connections' \
   --header 'Content-Type: application/json' \
   --data '{
       "name": "teambition-test",
       "endpoint": "https://open.teambition.com/api/";,
       "rateLimitPerHour": 20000,
       "appId": "",
       "secretKey": "",
       "tenantId": "",
       "tenantType": "organization"
   }'
   ```
   And you will get the `connection id` from response.
   
   BTW, you can also start the pipeline using api
   ```text
   curl --location 'http://{devlake-backend-host}:{port}/pipelines' \
   --header 'Content-Type: application/json' \
   --data '{
       "name":"MY PIPELINE",
       "plan":[
           [
               {
                   "plugin":"teambition",
                   "options":{
                       "connectionId":1,
                       "projectId": "",
                       "pageSize": 10
                   }
               }
           ]
       ]
   }'
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to