I want to remove some items in the UI of AirByte w...
# help-connector-development
c
I want to remove some items in the UI of AirByte web. How can i do that?
k
A message from kapa.ai
To remove a connector from Airbyte via the UI, you can't do it directly. However, you can delete a connector using the Airbyte API. In a previous support conversation, it was mentioned that you can [get a list of sources](https://airbyte-public-api-docs.s3.us-east-2.amazonaws.com/rapidoc-api-docs.html#post-/v1/sources/list) and then use [its ID to delete it](https://airbyte-public-api-docs.s3.us-east-2.amazonaws.com/rapidoc-api-docs.html#post-/v1/sources/delete). For hiding specific input fields in the UI, you can use the
"airbyte_hidden": true
keyword in the connector's JSON schema. This will hide the field from the UI but still allow it to be configurable via the API or when running the connector outside of Airbyte. Here's an example:
Copy code
json {   "first_name": {     "type": "string",     "title": "First Name"   },   "secret_name": {     "type": "string",     "title": "You can't see me!!!",     "airbyte_hidden": true   } }
Source: [Connector Specification Reference](https://docs.airbyte.com/connector-development/connector-specification-reference)