사용 가능한 데이터 소스 통합 목록
get
This operation retrieves available data sources.
Responses
200
Successful operation
application/json
get
/integrations/200
Successful operation
예제 요청
curl -X GET \
https://api.rememberizer.ai/api/v1/integrations/ \
-H "Authorization: Bearer YOUR_JWT_TOKEN"const getIntegrations = async () => {
const response = await fetch('https://api.rememberizer.ai/api/v1/integrations/', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_JWT_TOKEN'
}
});
const data = await response.json();
console.log(data);
};
getIntegrations();import requests
def get_integrations():
headers = {
"Authorization": "Bearer YOUR_JWT_TOKEN"
}
response = requests.get(
"https://api.rememberizer.ai/api/v1/integrations/",
headers=headers
)
data = response.json()
print(data)
get_integrations()응답 형식
이 엔드포인트는 현재 사용자에 대한 모든 사용 가능한 데이터 소스 통합 목록을 검색합니다. 응답에는 각 통합에 대한 통합 유형, 상태 및 문서 통계에 대한 자세한 정보가 포함됩니다.
Last updated