Obtaining Project Commits
Function
This API is used to obtain the latest ten project commits.
The request header parameter X-Repo-Auth needs to be added for this API. Its value is the name of the OAuth authorization created in Creating OAuth Authorization.
URI
GET /v1/{project_id}/git/repos/{namespace}/{project}/commits
Table 1 describes the parameters.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| project_id | String | Yes | Tenant's project ID. |
| namespace | String | Yes | Namespace ID or URL code name. |
| project | String | Yes | Repository project ID or URL code name. If the value contains a slash (/), replace it with a colon (:). |
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| ref | String | No | Branch or tag name. If it is not provided, use the default branch. |
Request
Request parameters
None
Response
Response parameters
| Parameter | Type | Description |
|---|---|---|
| commits | Array<Object> | Project commits struct. For details, see Table 4. |
Example
Example request
None
Example response
{
"commits": [
{
"sha": "string",
"message": "string",
"authored_date": "string"
}
]
Status Code
| HTTP Status Code | Description |
|---|---|
| 200 | OK |
| 400 | Bad Request |
Error code must be in the format of SVCSTG.REPO.[Error_ID]. Example: SVCSTG.REPO.0401. See ServiceStage Error Codes.
Last Article: Deleting a Project Tag
Next Article: Obtaining a Project Hook
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.