get files by connector_id
GET
api.wexa.ai/files/{projectID}/connector/{connector_id}
Last modified:2025-04-25 11:09:08
Retrieve Files by Connector ID
projectID
and connector_id
, you can access metadata such as file names, sizes, types, and associated tags, facilitating the management and monitoring of files linked to external integrations.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'api.wexa.ai/files//connector/' \
--header 'x-api-key: {{x-api-key}}'
Response Response Example
{
"status": "success",
"files": {
"_id": "68060c4c064a778a5f18f9f5",
"projectID": "67fdea40aac77be632954f13",
"name": "Durga_prasad_new_resume.pdf",
"mime_type": "application/pdf",
"location": "storage_Durga_prasad_new_resume_4cb7.pdf",
"tags": [
"haha"
],
"source_type": "STORAGE",
"size_in_kb": 156.53515625,
"container_name": "67fdea40aac77be632954f13",
"url": "https://klotdev.blob.core.windows.net/67fdea40aac77be632954f13/storage_Durga_prasad_new_resume_4cb7.pdf?se=2025-04-23T22%3A04%3A27Z&sp=r&sv=2023-11-03&sr=b&sig=Ye1XR0Uz4fBI1/X6ckahcIQvtbKhjV2IADoZ5UzVzTs%3D",
"connector_id": "68060c4c064a778a5f18f9f7",
"uploaded_on": 1745226829007
}
}
Request
Path Params
projectID
string
required
connector_id
string
required
Header Params
x-api-key
string
required
Example:
{{x-api-key}}
Responses
Modified at 2025-04-25 11:09:08