Builds
Retrieves the latest build statuses ordered by commit date, with package metadata enriched from the package collection
Authorizations
Query parameters
repositoryIdentifierstringRequiredExample:
Repository identifier (e.g., owner/repo)
flxbl-io/sf-core
limitnumber · min: 1 · max: 100OptionalDefault:
Maximum number of builds to return
20
offsetnumberOptionalDefault:
Offset for pagination
0
domainstringOptionalExample:
Filter by specific domain
core
Responses
200
Build status retrieved successfully
application/json
401
Unauthorized
403
Forbidden - insufficient role
500
Internal server error
get
GET /sfp/api/builds/status?repositoryIdentifier=flxbl-io%2Fsf-core HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
{
"builds": [
{
"commitId": "text",
"commitMessage": "text",
"commitAuthor": "text",
"commitDate": "text",
"commitTimestamp": 1,
"domains": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"firstSeenAt": "text",
"lastUpdatedAt": "text"
}
],
"total": 1,
"hasMore": true
}
Was this helpful?