Hi can I do everything which I can do with airbyte...
# ask-community-for-troubleshooting
p
Hi can I do everything which I can do with airbyte UI using these API/s https://airbyte-public-api-docs.s3.us-east-2.amazonaws.com/rapidoc-api-docs.html Warm Regards.
👍 1
👀 2
m
Yes
p
Can please forward me any video tutorial or github example , as the workspace creation is referring to docker
a
Sorry @Preetam Balijepalli we do not have documentation for the API except what you already found. Let us know what you try to achieve and we'll try to help here.
p
Let's assume use case - where I'm connecting to source elastic-search and run query against it sync it to a s3 or Elastic-search , if I have to define the source destination and entire orchestration using api , what would be sequence of endpoint calls.
👀 1
any pointers please
h
1. Create a source 2. Create a destination (not needed if already done) 3. Create a connection 4. Hit manual sync API
p
Copy code
{
  "sourceDefinitionId": "17eb3b76-df60-4000-81e8-f38d0286f501",
  "connectionConfiguration": {
    "user": "charles"
  },
  "workspaceId": "17eb3b76-df60-4000-8872-ad2e0a925201",
  "name": "string"
} where sourceDefinitioId should be created upfront looks like {
  "name": "string",
  "dockerRepository": "string",
  "dockerImageTag": "string",
  "documentationUrl": "<http://example.com>",
  "icon": "string"
} whats the docker image being referred to
h
This is source definition and refers to the docker image for the connector. You need to use source API (https://airbyte-public-api-docs.s3.us-east-2.amazonaws.com/rapidoc-api-docs.html#post-/v1/sources/create)
p
where do we have the docker image details for the connector/s already built
h
You need to do this through API all the connectors which are public are already added to the Airbyte instance and come by default
p
thanks! for quick responses , let me explore and get back to you