Get repository details
- Print
- PDF
Get repository details
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Overview
Get repository details.
Request
API URL
GET {SOURCECOMMIT_API_URL}/repository/{repositoryName}
Request parameters
Category | Type | Description | Remarks |
---|---|---|---|
repositoryName | string | Repository name | Get with repositoryList API |
Request query
None
Request body
None
Response
Response body
{
"id": "number",
"name": "string",
"description": "string",
"created": {
"timestamp": "number",
"user": "string"
},
"git": {
"https": "string",
"ssh": "string",
"httpsPrivate": "string"
},
"linked": {
"FileSafer": "boolean",
"ObjectStorage": "boolean"
}
}
Category | Type | Description | Remarks |
---|---|---|---|
id | number | Repository ID | |
name | string | Repository name | |
linked.FileSafer | boolean | File Safer integration status | |
linked.ObjectStorage | boolean | Object Storage integration status | |
git.ssh | string | Repository Git address (SSH) | |
git.https | string | Repository Git address (HTTPS) | |
git.httpsPrivate | string | Repository Git private address (HTTPS) | |
description | string | Repository description | |
created.user | string | Repository creator's user ID | |
created.timestamp | number | Repository creation time |
Was this article helpful?