State that two repositories are related for AI review
import requests
url = "https://platform.ankra.app/api/v1/org/ai-gateway/related-repos"
payload = {
"related_repo_full_name": "<string>",
"repo_full_name": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({related_repo_full_name: '<string>', repo_full_name: '<string>'})
};
fetch('https://platform.ankra.app/api/v1/org/ai-gateway/related-repos', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url https://platform.ankra.app/api/v1/org/ai-gateway/related-repos \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"related_repo_full_name": "<string>",
"repo_full_name": "<string>"
}
'{
"id": "<string>",
"provider": "<string>",
"related_repo_full_name": "<string>",
"repo_full_name": "<string>"
}AI Environment
State that two repositories are related for AI review
POST
/
api
/
v1
/
org
/
ai-gateway
/
related-repos
State that two repositories are related for AI review
import requests
url = "https://platform.ankra.app/api/v1/org/ai-gateway/related-repos"
payload = {
"related_repo_full_name": "<string>",
"repo_full_name": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({related_repo_full_name: '<string>', repo_full_name: '<string>'})
};
fetch('https://platform.ankra.app/api/v1/org/ai-gateway/related-repos', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url https://platform.ankra.app/api/v1/org/ai-gateway/related-repos \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"related_repo_full_name": "<string>",
"repo_full_name": "<string>"
}
'{
"id": "<string>",
"provider": "<string>",
"related_repo_full_name": "<string>",
"repo_full_name": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json