curl --request POST \
--url https://cloud.kaneo.app/api/gitea-integration/repositories \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"baseUrl": "<string>",
"accessToken": "<string>"
}
'{
"repositories": [
{
"id": 123,
"name": "<string>",
"full_name": "<string>",
"owner": {
"login": "<string>"
},
"private": true,
"html_url": "<string>"
}
]
}List repositories accessible with a Gitea token
curl --request POST \
--url https://cloud.kaneo.app/api/gitea-integration/repositories \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"baseUrl": "<string>",
"accessToken": "<string>"
}
'{
"repositories": [
{
"id": 123,
"name": "<string>",
"full_name": "<string>",
"owner": {
"login": "<string>"
},
"private": true,
"html_url": "<string>"
}
]
}Was this page helpful?