Get information about the source config
Return a JSON representation of the source config
Request
GET https://{hostname}:{port}
/build/rest2/projects/{id}/buildProcesses/{id}/sourceConfigs/{id}
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | true | The identifier to use when looking up a project. This can be the name or ID of the project |
| id | string | true | The identifier to use when looking up a build process. This can be the name or ID of the process |
| id | string | true | The identifier to use when looking up a source config. This can be the name or ID of the source config |
This command takes a JSON request string or file. Use the following template for the request:
{
"id": "The ID of the source config",
"ignoreRepositoryTrigger": "Whether or not the source
config should ignore repository triggers",
"inTemplateCompliance": "Whether or not the source
config is in compliance with its template",
"location": "The URL that can be used to get the JSON
representation of the source config",
"name": "The name of the source config",
"respository": "The repository that the source config
will use",
"templateId": "The source config template ID for this
source config",
"templatedProperties": [{
"name": "The name of the property",
"value": "The value of the property"
}]
}
