No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
This PHP package is automatically generated by the Swagger Codegen project:
- API version: 2018.1
- Package version: 1.1.0
- Build package: io.swagger.codegen.languages.PhpClientCodegen
PHP 5.5 and later
To install the bindings via Composer, add the following to composer.json:
{
"repositories": [
{
"type": "git",
"url": "https://github.com/aceviralltd/team-city-php.git"
}
],
"require": {
"aceviralltd/team-city-php": "*@dev"
}
}
Then run composer install
Download the files and include autoload.php:
require_once('/path/to/TeamCity/vendor/autoload.php');To run the unit tests:
composer install
./vendor/bin/phpunit
Please follow the installation procedure and then run the following:
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new AceViral\TeamCity\Api\AgentApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$agent_locator = "agent_locator_example"; // string |
try {
$apiInstance->deleteAgent($agent_locator);
} catch (Exception $e) {
echo 'Exception when calling AgentApi->deleteAgent: ', $e->getMessage(), PHP_EOL;
}
?>All URIs are relative to https://10.0.0.115:8111
| Class | Method | HTTP request | Description |
|---|---|---|---|
| AgentApi | deleteAgent | DELETE /app/rest/agents/{agentLocator} | Delete an inactive agent. |
| AgentApi | getAgent | GET /app/rest/agents/{agentLocator} | Get agent matching the locator. |
| AgentApi | getAgentField | GET /app/rest/agents/{agentLocator}/{field} | Get a field of the matching agent. |
| AgentApi | getAgentPool | GET /app/rest/agents/{agentLocator}/pool | Get the agent pool of the matching agent. |
| AgentApi | getAllAgents | GET /app/rest/agents | Get all known agents. |
| AgentApi | getAuthorizedInfo | GET /app/rest/agents/{agentLocator}/authorizedInfo | Get the authorization info of the matching agent. |
| AgentApi | getBuildConfigurationRunPolicy | GET /app/rest/agents/{agentLocator}/compatibilityPolicy | Get the build configuration run policy of the matching agent. |
| AgentApi | getCompatibleBuildTypes | GET /app/rest/agents/{agentLocator}/compatibleBuildTypes | Get build types compatible with the matching agent. |
| AgentApi | getEnabledInfo | GET /app/rest/agents/{agentLocator}/enabledInfo | Check if the matching agent is enabled. |
| AgentApi | getIncompatibleBuildTypes | GET /app/rest/agents/{agentLocator}/incompatibleBuildTypes | Get build types incompatible with the matching agent. |
| AgentApi | setAgentField | PUT /app/rest/agents/{agentLocator}/{field} | Update a field of the matching agent. |
| AgentApi | setAgentPool | PUT /app/rest/agents/{agentLocator}/pool | Assign the matching agent to the specified agent pool. |
| AgentApi | setAuthorizedInfo | PUT /app/rest/agents/{agentLocator}/authorizedInfo | Update the authorization info of the matching agent. |
| AgentApi | setBuildConfigurationRunPolicy | PUT /app/rest/agents/{agentLocator}/compatibilityPolicy | Update build configuration run policy of agent matching locator. |
| AgentApi | setEnabledInfo | PUT /app/rest/agents/{agentLocator}/enabledInfo | Update the enablement status of the matching agent. |
| AgentPoolApi | addAgentToAgentPool | POST /app/rest/agentPools/{agentPoolLocator}/agents | Assign the agent to the matching agent pool. |
| AgentPoolApi | addProjectToAgentPool | POST /app/rest/agentPools/{agentPoolLocator}/projects | Assign the project to the matching agent pool. |
| AgentPoolApi | createAgentPool | POST /app/rest/agentPools | Create a new agent pool. |
| AgentPoolApi | deleteAgentPool | DELETE /app/rest/agentPools/{agentPoolLocator} | Delete the agent pool matching the locator. |
| AgentPoolApi | deleteAllProjectsFromAgentPool | DELETE /app/rest/agentPools/{agentPoolLocator}/projects | Unassign all projects from the matching agent pool. |
| AgentPoolApi | deleteProjectFromAgentPool | DELETE /app/rest/agentPools/{agentPoolLocator}/projects/{projectLocator} | Unassign the project from the matching agent pool. |
| AgentPoolApi | getAgentPoolOfAgentPool | GET /app/rest/agentPools/{agentPoolLocator} | Get the agent pool matching the locator. |
| AgentPoolApi | getAllAgentPools | GET /app/rest/agentPools | Get all agent pools. |
| AgentPoolApi | getAllAgentsFromAgentPool | GET /app/rest/agentPools/{agentPoolLocator}/agents | Get the agent of the matching agent pool. |
| AgentPoolApi | getAllProjectsFromAgentPool | GET /app/rest/agentPools/{agentPoolLocator}/projects | Get all projects of the matching agent pool. |
| AgentPoolApi | getFieldFromAgentPool | GET /app/rest/agentPools/{agentPoolLocator}/{field} | Get a field of the matching agent pool. |
| AgentPoolApi | setAgentPoolField | PUT /app/rest/agentPools/{agentPoolLocator}/{field} | Update a field of the matching agent pool. |
| AgentPoolApi | setAgentPoolProjects | PUT /app/rest/agentPools/{agentPoolLocator}/projects | Update projects of the matching agent pool. |
| AuditApi | getAllAuditEvents | GET /app/rest/audit | Get all audit events. |
| AuditApi | getAuditEvent | GET /app/rest/audit/{auditEventLocator} | Get audit event matching the locator. |
| BuildApi | addBuildVcsLabel | POST /app/rest/builds/{buildLocator}/vcsLabels | Add a VCS label to the matching build. |
| BuildApi | addLogMessageToBuild | POST /app/rest/builds/{buildLocator}/log | Adds a message to the build log. Service messages are accepted. |
| BuildApi | addProblemToBuild | POST /app/rest/builds/{buildLocator}/problemOccurrences | Add a build problem to the matching build. |
| BuildApi | addTagsToBuild | POST /app/rest/builds/{buildLocator}/tags | Add tags to the matching build. |
| BuildApi | addTagsToMultipleBuilds | POST /app/rest/builds/multiple/{buildLocator}/tags | Add tags to multiple matching builds. |
| BuildApi | cancelBuild | POST /app/rest/builds/{buildLocator} | cancelBuild |
| BuildApi | cancelMultiple | POST /app/rest/builds/multiple/{buildLocator} | cancelMultipleBuilds |
| BuildApi | deleteBuild | DELETE /app/rest/builds/{buildLocator} | Delete build matching the locator. |
| BuildApi | deleteBuildComment | DELETE /app/rest/builds/{buildLocator}/comment | Remove the build comment matching the locator. |
| BuildApi | deleteMultipleBuildComments | DELETE /app/rest/builds/multiple/{buildLocator}/comment | Delete comments of multiple matching builds. |
| BuildApi | deleteMultipleBuilds | DELETE /app/rest/builds/multiple/{buildLocator} | Delete multiple builds matching the locator. |
| BuildApi | downloadFileOfBuild | GET /app/rest/builds/{buildLocator}/artifacts/files{path} | Download specific file. |
| BuildApi | getAggregatedBuildStatus | GET /app/rest/builds/aggregated/{buildLocator}/status | Get the build status of aggregated matching builds. |
| BuildApi | getAggregatedBuildStatusIcon | GET /app/rest/builds/aggregated/{buildLocator}/statusIcon{suffix} | Get the status icon (in specified format) of aggregated matching builds. |
| BuildApi | getAllBuilds | GET /app/rest/builds | Get all builds. |
| BuildApi | getArtifactDependencyChanges | GET /app/rest/builds/{buildLocator}/artifactDependencyChanges | Get artifact dependency changes of the matching build. |
| BuildApi | getArtifactsDirectory | GET /app/rest/builds/{buildLocator}/artifactsDirectory | Get the artifacts' directory of the matching build. |
| BuildApi | getBuild | GET /app/rest/builds/{buildLocator} | Get build matching the locator. |
| BuildApi | getBuildActualParameters | GET /app/rest/builds/{buildLocator}/resulting-properties | Get actual build parameters of the matching build. |
| BuildApi | getBuildField | GET /app/rest/builds/{buildLocator}/{field} | Get a field of the matching build. |
| BuildApi | getBuildFinishDate | GET /app/rest/builds/{buildLocator}/finishDate | Get the finish date of the matching build. |
| BuildApi | getBuildNumber | GET /app/rest/builds/{buildLocator}/number | Get the number of the matching build. |
| BuildApi | getBuildPinInfo | GET /app/rest/builds/{buildLocator}/pinInfo | Check if the matching build is pinned. |
| BuildApi | getBuildProblems | GET /app/rest/builds/{buildLocator}/problemOccurrences | Get build problems of the matching build. |
| BuildApi | getBuildRelatedIssues | GET /app/rest/builds/{buildLocator}/relatedIssues | Get related issues of the matching build. |
| BuildApi | getBuildResolved | GET /app/rest/builds/{buildLocator}/resolved/{value} | Get the resolvement status of the matching build. |
| BuildApi | getBuildResultingProperties | GET /app/rest/builds/{buildLocator}/resulting-properties/{propertyName} | Update a build parameter of the matching build. |
| BuildApi | getBuildSourceFile | GET /app/rest/builds/{buildLocator}/sources/files/{fileName} | Get a source file of the matching build. |
| BuildApi | getBuildStatisticValue | GET /app/rest/builds/{buildLocator}/statistics/{name} | Get a statistical value of the matching build. |
| BuildApi | getBuildStatisticValues | GET /app/rest/builds/{buildLocator}/statistics | Get all statistical values of the matching build. |
| BuildApi | getBuildStatusIcon | GET /app/rest/builds/{buildLocator}/statusIcon{suffix} | Get the status icon (in specified format) of the matching build. |
| BuildApi | getBuildStatusText | GET /app/rest/builds/{buildLocator}/statusText | Get the build status text of the matching build. |
| BuildApi | getBuildTags | GET /app/rest/builds/{buildLocator}/tags | Get tags of the matching build. |
| BuildApi | getBuildTestOccurrences | GET /app/rest/builds/{buildLocator}/testOccurrences | Get test occurrences of the matching build. |
| BuildApi | getBuildVcsLabels | GET /app/rest/builds/{buildLocator}/vcsLabels | Get VCS labels of the matching build. |
| BuildApi | getCanceledInfo | GET /app/rest/builds/{buildLocator}/canceledInfo | Check if the matching build is canceled. |
| BuildApi | getFileMetadataOfBuild | GET /app/rest/builds/{buildLocator}/artifacts/metadata{path} | Get metadata of specific file. |
| BuildApi | getFilesListForSubpathOfBuild | GET /app/rest/builds/{buildLocator}/artifacts/{path} | List files under this path. |
| BuildApi | getFilesListOfBuild | GET /app/rest/builds/{buildLocator}/artifacts | List all files. |
| BuildApi | getMultipleBuilds | GET /app/rest/builds/multiple/{buildLocator} | Get multiple builds matching the locator. |
| BuildApi | getZippedFileOfBuild | GET /app/rest/builds/{buildLocator}/artifacts/archived{path} | Get specific file zipped. |
| BuildApi | markBuildAsRunning | PUT /app/rest/builds/{buildLocator}/runningData | Starts the queued build as an agent-less build and returns the corresponding running build. |
| BuildApi | pinMultipleBuilds | PUT /app/rest/builds/multiple/{buildLocator}/pinInfo | Pin multiple matching builds. |
| BuildApi | removeMultipleBuildTags | DELETE /app/rest/builds/multiple/{buildLocator}/tags | Remove tags from multiple matching builds. |
| BuildApi | resetBuildFinishProperties | DELETE /app/rest/builds/{buildLocator}/caches/finishProperties | Remove build parameters from the matching build. |
| BuildApi | setBuildComment | PUT /app/rest/builds/{buildLocator}/comment | Update the comment on the matching build. |
| BuildApi | setBuildFinishDate | PUT /app/rest/builds/{buildLocator}/finishDate | Marks the running build as finished by passing agent the current time of the build to finish. |
| BuildApi | setBuildNumber | PUT /app/rest/builds/{buildLocator}/number | Update the number of the matching build. |
| BuildApi | setBuildPinInfo | PUT /app/rest/builds/{buildLocator}/pinInfo | Update the pin info of the matching build. |
| BuildApi | setBuildStatusText | PUT /app/rest/builds/{buildLocator}/statusText | Update the build status of the matching build. |
| BuildApi | setBuildTags | PUT /app/rest/builds/{buildLocator}/tags | Update tags of the matching build. |
| BuildApi | setFinishedTime | PUT /app/rest/builds/{buildLocator}/finish | Marks the running build as finished by passing agent the current time of the build to finish. |
| BuildApi | setMultipleBuildComments | PUT /app/rest/builds/multiple/{buildLocator}/comment | Update comments in multiple matching builds. |
| BuildQueueApi | addBuildToQueue | POST /app/rest/buildQueue | Add a new build to the queue. |
| BuildQueueApi | addTagsToBuildOfBuildQueue | POST /app/rest/buildQueue/{buildLocator}/tags | Add tags to the matching build. |
| BuildQueueApi | cancelQueuedBuild | POST /app/rest/buildQueue/{queuedBuildLocator} | Cancel a queued matching build. |
| BuildQueueApi | deleteAllQueuedBuilds | DELETE /app/rest/buildQueue | Delete all queued builds. |
| BuildQueueApi | deleteQueuedBuild | DELETE /app/rest/buildQueue/{queuedBuildLocator} | Delete a queued matching build. |
| BuildQueueApi | getAllQueuedBuilds | GET /app/rest/buildQueue | Get all queued builds. |
| BuildQueueApi | getCompatibleAgentsForBuild | GET /app/rest/buildQueue/{queuedBuildLocator}/compatibleAgents | Get compatible agents for a queued matching build. |
| BuildQueueApi | getQueuedBuild | GET /app/rest/buildQueue/{queuedBuildLocator} | Get a queued matching build. |
| BuildQueueApi | getQueuedBuildPosition | GET /app/rest/buildQueue/order/{queuePosition} | Get the queue position of a queued matching build. |
| BuildQueueApi | getQueuedBuildTags | GET /app/rest/buildQueue/{buildLocator}/tags | Get tags of the queued matching build. |
| BuildQueueApi | setQueuedBuildPosition | PUT /app/rest/buildQueue/order/{queuePosition} | Update the queue position of a queued matching build. |
| BuildQueueApi | setQueuedBuildsOrder | PUT /app/rest/buildQueue/order | Update the build queue order. |
| BuildTypeApi | addAgentRequirementToBuildType | POST /app/rest/buildTypes/{btLocator}/agent-requirements | Add an agent requirement to the matching build configuration. |
| BuildTypeApi | addArtifactDependencyToBuildType | POST /app/rest/buildTypes/{btLocator}/artifact-dependencies | Add an artifact dependency to the matching build configuration. |
| BuildTypeApi | addBuildFeatureToBuildType | POST /app/rest/buildTypes/{btLocator}/features | Add build feature to the matching build configuration. |
| BuildTypeApi | addBuildStepToBuildType | POST /app/rest/buildTypes/{btLocator}/steps | Add a build step to the matching build configuration. |
| BuildTypeApi | addBuildTemplate | POST /app/rest/buildTypes/{btLocator}/templates | Add a build template to the matching build configuration. |
| BuildTypeApi | addParameterToBuildFeature | PUT /app/rest/buildTypes/{btLocator}/features/{featureId}/parameters/{parameterName} | Update build feature parameter for the matching build configuration. |
| BuildTypeApi | addParameterToBuildStep | PUT /app/rest/buildTypes/{btLocator}/steps/{stepId}/parameters/{parameterName} | Add a parameter to a build step of the matching build configuration. |
| BuildTypeApi | addSnapshotDependencyToBuildType | POST /app/rest/buildTypes/{btLocator}/snapshot-dependencies | Add a snapshot dependency to the matching build configuration. |
| BuildTypeApi | addTriggerToBuildType | POST /app/rest/buildTypes/{btLocator}/triggers | Add a trigger to the matching build configuration. |
| BuildTypeApi | addVcsRootToBuildType | POST /app/rest/buildTypes/{btLocator}/vcs-root-entries | Add a VCS root to the matching build. |
| BuildTypeApi | createBuildParameterOfBuildType | POST /app/rest/buildTypes/{btLocator}/parameters | Create a build parameter. |
| BuildTypeApi | createBuildType | POST /app/rest/buildTypes | Create a new build configuration. |
| BuildTypeApi | deleteAgentRequirement | DELETE /app/rest/buildTypes/{btLocator}/agent-requirements/{agentRequirementLocator} | Remove an agent requirement of the matching build configuration. |
| BuildTypeApi | deleteArtifactDependency | DELETE /app/rest/buildTypes/{btLocator}/artifact-dependencies/{artifactDepLocator} | Remove an artifact dependency from the matching build configuration. |
| BuildTypeApi | deleteBuildParameterOfBuildType | DELETE /app/rest/buildTypes/{btLocator}/parameters/{name} | Delete build parameter. |
| BuildTypeApi | deleteBuildParametersOfBuildType | DELETE /app/rest/buildTypes/{btLocator}/parameters | Delete all build parameters. |
| BuildTypeApi | deleteBuildStep | DELETE /app/rest/buildTypes/{btLocator}/steps/{stepId} | Delete a build step of the matching build configuration. |
| BuildTypeApi | deleteBuildStepParameters | PUT /app/rest/buildTypes/{btLocator}/steps/{stepId}/parameters | Update a parameter of a build step of the matching build configuration. |
| BuildTypeApi | deleteBuildType | DELETE /app/rest/buildTypes/{btLocator} | Delete build configuration matching the locator. |
| BuildTypeApi | deleteFeatureOfBuildType | DELETE /app/rest/buildTypes/{btLocator}/features/{featureId} | Remove a build feature of the matching build configuration. |
| BuildTypeApi | deleteSnapshotDependency | DELETE /app/rest/buildTypes/{btLocator}/snapshot-dependencies/{snapshotDepLocator} | Delete a snapshot dependency of the matching build configuration. |
| BuildTypeApi | deleteTrigger | DELETE /app/rest/buildTypes/{btLocator}/triggers/{triggerLocator} | Delete a trigger of the matching build configuration. |
| BuildTypeApi | deleteVcsRootOfBuildType | DELETE /app/rest/buildTypes/{btLocator}/vcs-root-entries/{vcsRootLocator} | Remove a VCS root of the matching build configuration. |
| BuildTypeApi | downloadFileOfBuildType | GET /app/rest/buildTypes/{btLocator}/vcs/files/latest/files{path} | Download specific file. |
| BuildTypeApi | getAgentRequirement | GET /app/rest/buildTypes/{btLocator}/agent-requirements/{agentRequirementLocator} | Get an agent requirement of the matching build configuration. |
| BuildTypeApi | getAgentRequirementParameter | GET /app/rest/buildTypes/{btLocator}/agent-requirements/{agentRequirementLocator}/{fieldName} | Get a setting of an agent requirement of the matching build configuration. |
| BuildTypeApi | getAliases | GET /app/rest/buildTypes/{btLocator}/aliases | Get external IDs of the matching build configuration. |
| BuildTypeApi | getAllAgentRequirements | GET /app/rest/buildTypes/{btLocator}/agent-requirements | Get all agent requirements of the matching build configuration. |
| BuildTypeApi | getAllArtifactDependencies | GET /app/rest/buildTypes/{btLocator}/artifact-dependencies | Get all artifact dependencies of the matching build configuration. |
| BuildTypeApi | getAllBranchesOfBuildType | GET /app/rest/buildTypes/{btLocator}/branches | Get all branches of the matching build configuration. |
| BuildTypeApi | getAllBuildFeatureParameters | GET /app/rest/buildTypes/{btLocator}/features/{featureId}/parameters | Get all parameters of a build feature of the matching build configuration. |
| BuildTypeApi | getAllBuildFeatures | GET /app/rest/buildTypes/{btLocator}/features | Get all build features of the matching build configuration. |
| BuildTypeApi | getAllBuildStepParameters | GET /app/rest/buildTypes/{btLocator}/steps/{stepId}/parameters | Get all parameters of a build step of the matching build configuration. |
| BuildTypeApi | getAllBuildSteps | GET /app/rest/buildTypes/{btLocator}/steps | Get all build steps of the matching build configuration. |
| BuildTypeApi | getAllBuildTemplates | GET /app/rest/buildTypes/{btLocator}/templates | Get all build templates of the matching build configuration. |
| BuildTypeApi | getAllBuildTypes | GET /app/rest/buildTypes | Get all build configurations. |
| BuildTypeApi | getAllInvestigationsOfBuildType | GET /app/rest/buildTypes/{btLocator}/investigations | Get all investigations of the matching build configuration. |
| BuildTypeApi | getAllSnapshotDependencies | GET /app/rest/buildTypes/{btLocator}/snapshot-dependencies | Get all snapshot dependencies of the matching build configuration. |
| BuildTypeApi | getAllTriggers | GET /app/rest/buildTypes/{btLocator}/triggers | Get all triggers of the matching build configuration. |
| BuildTypeApi | getAllVcsRootsOfBuildType | GET /app/rest/buildTypes/{btLocator}/vcs-root-entries | Get all VCS roots of the matching build configuration. |
| BuildTypeApi | getArtifactDependency | GET /app/rest/buildTypes/{btLocator}/artifact-dependencies/{artifactDepLocator} | Get an artifact dependency of the matching build configuration. |
| BuildTypeApi | getArtifactDependencyParameter | GET /app/rest/buildTypes/{btLocator}/artifact-dependencies/{artifactDepLocator}/{fieldName} | Get a parameter of an artifact dependency of the matching build configuration. |
| BuildTypeApi | getBuildFeature | GET /app/rest/buildTypes/{btLocator}/features/{featureId} | Get a build feature of the matching build configuration. |
| BuildTypeApi | getBuildFeatureParameter | GET /app/rest/buildTypes/{btLocator}/features/{featureId}/parameters/{parameterName} | Get a parameter of a build feature of the matching build configuration. |
| BuildTypeApi | getBuildFeatureSetting | GET /app/rest/buildTypes/{btLocator}/features/{featureId}/{name} | Get the setting of a build feature of the matching build configuration. |
| BuildTypeApi | getBuildParameterOfBuildType | GET /app/rest/buildTypes/{btLocator}/parameters/{name} | Get build parameter. |
| BuildTypeApi | getBuildParameterSpecificationOfBuildType | GET /app/rest/buildTypes/{btLocator}/parameters/{name}/type/rawValue | Get build parameter specification. |
| BuildTypeApi | getBuildParameterTypeOfBuildType | GET /app/rest/buildTypes/{btLocator}/parameters/{name}/type | Get type of build parameter. |
| BuildTypeApi | getBuildParameterValueOfBuildType | GET /app/rest/buildTypes/{btLocator}/parameters/{name}/value | Get value of build parameter. |
| BuildTypeApi | getBuildParametersOfBuildType | GET /app/rest/buildTypes/{btLocator}/parameters | Get build parameters. |
| BuildTypeApi | getBuildStep | GET /app/rest/buildTypes/{btLocator}/steps/{stepId} | Get a build step of the matching build configuration. |
| BuildTypeApi | getBuildStepParameter | GET /app/rest/buildTypes/{btLocator}/steps/{stepId}/parameters/{parameterName} | Get a parameter of a build step of the matching build configuration. |
| BuildTypeApi | getBuildStepSetting | GET /app/rest/buildTypes/{btLocator}/steps/{stepId}/{fieldName} | Get the setting of a build step of the matching build configuration. |
| BuildTypeApi | getBuildTemplate | GET /app/rest/buildTypes/{btLocator}/templates/{templateLocator} | Get a template of the matching build configuration. |
| BuildTypeApi | getBuildType | GET /app/rest/buildTypes/{btLocator} | Get build configuration matching the locator. |
| BuildTypeApi | getBuildTypeBuildTags | GET /app/rest/buildTypes/{btLocator}/buildTags | Get tags of builds of the matching build configuration. |
| BuildTypeApi | getBuildTypeBuilds | GET /app/rest/buildTypes/{btLocator}/builds | Get builds of the matching build configuration. |
| BuildTypeApi | getBuildTypeField | GET /app/rest/buildTypes/{btLocator}/{field} | Get a field of the matching build configuration. |
| BuildTypeApi | getBuildTypeSettingsFile | GET /app/rest/buildTypes/{btLocator}/settingsFile | Get the settings file of the matching build configuration. |
| BuildTypeApi | getFileMetadataOfBuildType | GET /app/rest/buildTypes/{btLocator}/vcs/files/latest/metadata{path} | Get metadata of specific file. |
| BuildTypeApi | getFilesListForSubpathOfBuildType | GET /app/rest/buildTypes/{btLocator}/vcs/files/latest/{path} | List files under this path. |
| BuildTypeApi | getFilesListOfBuildType | GET /app/rest/buildTypes/{btLocator}/vcs/files/latest | List all files. |
| BuildTypeApi | getSnapshotDependency | GET /app/rest/buildTypes/{btLocator}/snapshot-dependencies/{snapshotDepLocator} | Get a snapshot dependency of the matching build configuration. |
| BuildTypeApi | getTrigger | GET /app/rest/buildTypes/{btLocator}/triggers/{triggerLocator} | Get a trigger of the matching build configuration. |
| BuildTypeApi | getTriggerParameter | GET /app/rest/buildTypes/{btLocator}/triggers/{triggerLocator}/{fieldName} | Get a parameter of a trigger of the matching build configuration. |
| BuildTypeApi | getVcsRoot | GET /app/rest/buildTypes/{btLocator}/vcs-root-entries/{vcsRootLocator} | Get a VCS root of the matching build configuration. |
| BuildTypeApi | getVcsRootCheckoutRules | GET /app/rest/buildTypes/{btLocator}/vcs-root-entries/{vcsRootLocator}/checkout-rules | Get checkout rules of a VCS root of the matching build configuration. |
| BuildTypeApi | getVcsRootInstancesOfBuildType | GET /app/rest/buildTypes/{btLocator}/vcsRootInstances | Get all VCS root instances of the matching build configuration. |
| BuildTypeApi | getZippedFileOfBuildType | GET /app/rest/buildTypes/{btLocator}/vcs/files/latest/archived{path} | Get specific file zipped. |
| BuildTypeApi | removeAllTemplates | DELETE /app/rest/buildTypes/{btLocator}/templates | Detach all templates from the matching build configuration. |
| BuildTypeApi | removeTemplate | DELETE /app/rest/buildTypes/{btLocator}/templates/{templateLocator} | Detach a template from the matching build configuration. |
| BuildTypeApi | replaceAgentRequirement | PUT /app/rest/buildTypes/{btLocator}/agent-requirements/{agentRequirementLocator} | Update an agent requirement of the matching build configuration. |
| BuildTypeApi | replaceAllAgentRequirements | PUT /app/rest/buildTypes/{btLocator}/agent-requirements | Update all agent requirements of the matching build configuration. |
| BuildTypeApi | replaceAllArtifactDependencies | PUT /app/rest/buildTypes/{btLocator}/artifact-dependencies | Update all artifact dependencies of the matching build configuration. |
| BuildTypeApi | replaceAllBuildFeatures | PUT /app/rest/buildTypes/{btLocator}/features | Update all build features of the matching build configuration. |
| BuildTypeApi | replaceAllBuildSteps | PUT /app/rest/buildTypes/{btLocator}/steps | Update all build steps of the matching build configuration. |
| BuildTypeApi | replaceAllSnapshotDependencies | PUT /app/rest/buildTypes/{btLocator}/snapshot-dependencies | Update all snapshot dependencies of the matching build configuration. |
| BuildTypeApi | replaceAllTriggers | PUT /app/rest/buildTypes/{btLocator}/triggers | Update all triggers of the matching build configuration. |
| BuildTypeApi | replaceAllVcsRoots | PUT /app/rest/buildTypes/{btLocator}/vcs-root-entries | Update all VCS roots of the matching build configuration. |
| BuildTypeApi | replaceArtifactDependency | PUT /app/rest/buildTypes/{btLocator}/artifact-dependencies/{artifactDepLocator} | Update an artifact dependency of the matching build configuration. |
| BuildTypeApi | replaceBuildFeature | PUT /app/rest/buildTypes/{btLocator}/features/{featureId} | Update a build feature of the matching build configuration. |
| BuildTypeApi | replaceBuildFeatureParameters | PUT /app/rest/buildTypes/{btLocator}/features/{featureId}/parameters | Update a parameter of a build feature of the matching build configuration. |
| BuildTypeApi | replaceBuildStep | PUT /app/rest/buildTypes/{btLocator}/steps/{stepId} | Replace a build step of the matching build configuration. |
| BuildTypeApi | replaceSnapshotDependency | PUT /app/rest/buildTypes/{btLocator}/snapshot-dependencies/{snapshotDepLocator} | Update a snapshot dependency of the matching build configuration. |
| BuildTypeApi | replaceTrigger | PUT /app/rest/buildTypes/{btLocator}/triggers/{triggerLocator} | Update a trigger of the matching build configuration. |
| BuildTypeApi | setAgentRequirementParameter | PUT /app/rest/buildTypes/{btLocator}/agent-requirements/{agentRequirementLocator}/{fieldName} | Update a parameter of an agent requirement of the matching build configuration. |
| BuildTypeApi | setArtifactDependencyParameter | PUT /app/rest/buildTypes/{btLocator}/artifact-dependencies/{artifactDepLocator}/{fieldName} | Update a parameter of an artifact dependency of the matching build configuration. |
| BuildTypeApi | setBuildFeatureParameter | PUT /app/rest/buildTypes/{btLocator}/features/{featureId}/{name} | Update a parameter of a build feature of the matching build configuration. |
| BuildTypeApi | setBuildStepParameter | PUT /app/rest/buildTypes/{btLocator}/steps/{stepId}/{fieldName} | Update a parameter of a build step of the matching build configuration. |
| BuildTypeApi | setBuildTypeField | PUT /app/rest/buildTypes/{btLocator}/{field} | Update a field of the matching build configuration. |
| BuildTypeApi | setBuildTypeTemplates | PUT /app/rest/buildTypes/{btLocator}/templates | Update all templates of the matching build configuration. |
| BuildTypeApi | setTriggerParameter | PUT /app/rest/buildTypes/{btLocator}/triggers/{triggerLocator}/{fieldName} | Update a parameter of a trigger of the matching build configuration. |
| BuildTypeApi | updateBuildParameterOfBuildType | PUT /app/rest/buildTypes/{btLocator}/parameters/{name} | Update build parameter. |
| BuildTypeApi | updateBuildParameterSpecificationOfBuildType | PUT /app/rest/buildTypes/{btLocator}/parameters/{name}/type/rawValue | Update build parameter specification. |
| BuildTypeApi | updateBuildParameterTypeOfBuildType | PUT /app/rest/buildTypes/{btLocator}/parameters/{name}/type | Update type of build parameter. |
| BuildTypeApi | updateBuildParameterValueOfBuildType | PUT /app/rest/buildTypes/{btLocator}/parameters/{name}/value | Update value of build parameter. |
| BuildTypeApi | updateBuildParametersOfBuildType | PUT /app/rest/buildTypes/{btLocator}/parameters | Update build parameters. |
| BuildTypeApi | updateBuildTypeVcsRoot | PUT /app/rest/buildTypes/{btLocator}/vcs-root-entries/{vcsRootLocator} | Update a VCS root of the matching build configuration. |
| BuildTypeApi | updateBuildTypeVcsRootCheckoutRules | PUT /app/rest/buildTypes/{btLocator}/vcs-root-entries/{vcsRootLocator}/checkout-rules | Update checkout rules of a VCS root of the matching build configuration. |
| ChangeApi | getAllChanges | GET /app/rest/changes | Get all changes. |
| ChangeApi | getChange | GET /app/rest/changes/{changeLocator} | Get change matching the locator. |
| ChangeApi | getChangeAttributes | GET /app/rest/changes/{changeLocator}/attributes | Get attributes of the matching change. |
| ChangeApi | getChangeDuplicates | GET /app/rest/changes/{changeLocator}/duplicates | Get duplicates of the matching change. |
| ChangeApi | getChangeField | GET /app/rest/changes/{changeLocator}/{field} | Get a field of the matching change. |
| ChangeApi | getChangeFirstBuilds | GET /app/rest/changes/{changeLocator}/firstBuilds | Get first builds of the matching change. |
| ChangeApi | getChangeIssue | GET /app/rest/changes/{changeLocator}/issues | Get issues of the matching change. |
| ChangeApi | getChangeParentChanges | GET /app/rest/changes/{changeLocator}/parentChanges | Get parent changes of the matching change. |
| ChangeApi | getChangeParentRevisions | GET /app/rest/changes/{changeLocator}/parentRevisions | Get parent revisions of the matching change. |
| ChangeApi | getChangeRelatedBuildTypes | GET /app/rest/changes/{changeLocator}/buildTypes | Get build configurations related to the matching change. |
| ChangeApi | getChangeVcsRoot | GET /app/rest/changes/{changeLocator}/vcsRootInstance | Get a VCS root instance of the matching change. |
| ChangeApi | getUniqueCommiters | GET /app/rest/changes/{changeLocator}/commiters | Get unique commiters of the matching changes. |
| CloudInstanceApi | getAllCloudImages | GET /app/rest/cloud/images | Get all cloud images. |
| CloudInstanceApi | getAllCloudInstances | GET /app/rest/cloud/instances | Get all cloud instances. |
| CloudInstanceApi | getAllCloudProfiles | GET /app/rest/cloud/profiles | Get all cloud profiles. |
| CloudInstanceApi | getCloudImage | GET /app/rest/cloud/images/{imageLocator} | Get cloud image matching the locator. |
| CloudInstanceApi | getCloudInstance | GET /app/rest/cloud/instances/{instanceLocator} | Get cloud instance matching the locator. |
| CloudInstanceApi | getCloudProfile | GET /app/rest/cloud/profiles/{profileLocator} | Get cloud profile matching the locator. |
| CloudInstanceApi | startInstance | POST /app/rest/cloud/instances | Start a new cloud instance. |
| CloudInstanceApi | stopInstance | DELETE /app/rest/cloud/instances/{instanceLocator} | Stop cloud instance matching the locator. |
| GroupApi | addGroup | POST /app/rest/userGroups | Add a new user group. |
| GroupApi | addRoleAtScopeToGroup | POST /app/rest/userGroups/{groupLocator}/roles/{roleId}/{scope} | Add a role with the specific scope to the matching user group. |
| GroupApi | addRoleToGroup | POST /app/rest/userGroups/{groupLocator}/roles | Add a role to the matching user group. |
| GroupApi | deleteGroup | DELETE /app/rest/userGroups/{groupLocator} | Delete user group matching the locator. |
| GroupApi | getAllGroups | GET /app/rest/userGroups | Get all user groups. |
| GroupApi | getGroupParentGroups | GET /app/rest/userGroups/{groupLocator}/parent-groups | Get parent groups of the matching user group. |
| GroupApi | getGroupProperties | GET /app/rest/userGroups/{groupLocator}/properties | Get properties of the matching user group. |
| GroupApi | getGroupProperty | GET /app/rest/userGroups/{groupLocator}/properties/{name} | Get a property of the matching user group. |
| GroupApi | getGroupRoleAtScope | GET /app/rest/userGroups/{groupLocator}/roles/{roleId}/{scope} | Get a role with the specific scope of the matching user group. |
| GroupApi | getGroupRoles | GET /app/rest/userGroups/{groupLocator}/roles | Get all roles of the matching user group. |
| GroupApi | getUserGroupOfGroup | GET /app/rest/userGroups/{groupLocator} | Get user group matching the locator. |
| GroupApi | removeGroupProperty | DELETE /app/rest/userGroups/{groupLocator}/properties/{name} | Remove a property of the matching user group. |
| GroupApi | removeRoleAtScopeFromGroup | DELETE /app/rest/userGroups/{groupLocator}/roles/{roleId}/{scope} | Remove a role with the specific scope from the matching user group. |
| GroupApi | setGroupParentGroups | PUT /app/rest/userGroups/{groupLocator}/parent-groups | Update parent groups of the matching user group. |
| GroupApi | setGroupProperty | PUT /app/rest/userGroups/{groupLocator}/properties/{name} | Update a property of the matching user group. |
| GroupApi | setGroupRoles | PUT /app/rest/userGroups/{groupLocator}/roles | Update roles of the matching user group. |
| InvestigationApi | addInvestigation | POST /app/rest/investigations | Create a new investigation. |
| InvestigationApi | addMultipleInvestigations | POST /app/rest/investigations/multiple | Create multiple new investigations. |
| InvestigationApi | deleteInvestigation | DELETE /app/rest/investigations/{investigationLocator} | Delete investigation matching the locator. |
| InvestigationApi | getAllInvestigations | GET /app/rest/investigations | Get all investigations. |
| InvestigationApi | getInvestigation | GET /app/rest/investigations/{investigationLocator} | Get investigation matching the locator. |
| InvestigationApi | replaceInvestigation | PUT /app/rest/investigations/{investigationLocator} | Update investigation matching the locator. |
| MuteApi | getAllMutedTests | GET /app/rest/mutes | Get all muted tests. |
| MuteApi | getMutedTest | GET /app/rest/mutes/{muteLocator} | Get a muted test. |
| MuteApi | muteMultipleTests | POST /app/rest/mutes/multiple | Mute multiple tests. |
| MuteApi | muteTest | POST /app/rest/mutes | Mute a test. |
| MuteApi | unmuteTest | DELETE /app/rest/mutes/{muteLocator} | Unmute the matching test. |
| ProblemApi | getAllBuildProblems | GET /app/rest/problems | Get all build problems. |
| ProblemApi | getBuildProblem | GET /app/rest/problems/{problemLocator} | Get a matching build problem. |
| ProblemOccurrenceApi | getAllBuildProblemOccurrences | GET /app/rest/problemOccurrences | Get all build problem occurrences. |
| ProblemOccurrenceApi | getBuildProblemOccurrence | GET /app/rest/problemOccurrences/{problemLocator} | Get a matching build problem occurrence. |
| ProjectApi | addAgentPoolsProject | POST /app/rest/projects/{projectLocator}/agentPools | Assign the matching project to the agent pool. |
| ProjectApi | addBuildType | POST /app/rest/projects/{projectLocator}/buildTypes | Add a build configuration to the matching project. |
| ProjectApi | addFeature | POST /app/rest/projects/{projectLocator}/projectFeatures | Add a feature. |
| ProjectApi | addProject | POST /app/rest/projects | Create a new project. |
| ProjectApi | addSecureToken | POST /app/rest/projects/{projectLocator}/secure/tokens | Create a new secure token for the matching project. |
| ProjectApi | addTemplate | POST /app/rest/projects/{projectLocator}/templates | Add a build configuration template to the matching project. |
| ProjectApi | createBuildParameter | POST /app/rest/projects/{projectLocator}/parameters | Create a build parameter. |
| ProjectApi | deleteBuildParameter | DELETE /app/rest/projects/{projectLocator}/parameters/{name} | Delete build parameter. |
| ProjectApi | deleteBuildParameters | DELETE /app/rest/projects/{projectLocator}/parameters | Delete all build parameters. |
| ProjectApi | deleteFeature | DELETE /app/rest/projects/{projectLocator}/projectFeatures/{featureLocator} | Delete a matching feature. |
| ProjectApi | deleteProject | DELETE /app/rest/projects/{projectLocator} | Delete project matching the locator. |
| ProjectApi | getAgentPoolsProject | GET /app/rest/projects/{projectLocator}/agentPools | Get agent pools appointed to the matching project. |
| ProjectApi | getAllBranches | GET /app/rest/projects/{projectLocator}/branches | Get all branches of the matching project. |
| ProjectApi | getAllProjects | GET /app/rest/projects | Get all projects. |
| ProjectApi | getAllSubprojectsOrdered | GET /app/rest/projects/{projectLocator}/order/projects | Get all subprojects ordered of the matching project. |
| ProjectApi | getBuildParameter | GET /app/rest/projects/{projectLocator}/parameters/{name} | Get build parameter. |
| ProjectApi | getBuildParameterSpecification | GET /app/rest/projects/{projectLocator}/parameters/{name}/type/rawValue | Get build parameter specification. |
| ProjectApi | getBuildParameterType | GET /app/rest/projects/{projectLocator}/parameters/{name}/type | Get type of build parameter. |
| ProjectApi | getBuildParameterValue | GET /app/rest/projects/{projectLocator}/parameters/{name}/value | Get value of build parameter. |
| ProjectApi | getBuildParameters | GET /app/rest/projects/{projectLocator}/parameters | Get build parameters. |
| ProjectApi | getDefaultTemplate | GET /app/rest/projects/{projectLocator}/defaultTemplate | Get the default template of the matching project. |
| ProjectApi | getFeature | GET /app/rest/projects/{projectLocator}/projectFeatures/{featureLocator} | Get a matching feature. |
| ProjectApi | getFeatures | GET /app/rest/projects/{projectLocator}/projectFeatures | Get all features. |
| ProjectApi | getProject | GET /app/rest/projects/{projectLocator} | Get project matching the locator. |
| ProjectApi | getProjectField | GET /app/rest/projects/{projectLocator}/{field} | Get a field of the matching project. |
| ProjectApi | getProjectParentProject | GET /app/rest/projects/{projectLocator}/parentProject | Get the parent project of the matching project. |
| ProjectApi | getProjectSettingsFile | GET /app/rest/projects/{projectLocator}/settingsFile | Get the settings file of the matching build configuration. |
| ProjectApi | getProjectTemplates | GET /app/rest/projects/{projectLocator}/templates | Get all templates of the matching project. |
| ProjectApi | getSecureValue | GET /app/rest/projects/{projectLocator}/secure/values/{token} | Get a secure token of the matching project. |
| ProjectApi | removeDefaultTemplate | DELETE /app/rest/projects/{projectLocator}/defaultTemplate | Remove the default template from the matching project. |
| ProjectApi | removeProjectFromAgentPool | DELETE /app/rest/projects/{projectLocator}/agentPools/{agentPoolLocator} | Unassign a project from the matching agent pool. |
| ProjectApi | setAgentPoolsProject | PUT /app/rest/projects/{projectLocator}/agentPools | Update agent pools apppointed to the matching project. |
| ProjectApi | setBuildTypesOrder | PUT /app/rest/projects/{projectLocator}/order/buildTypes | Update all build configurations order of the matching project. |
| ProjectApi | setDefaultTemplate | PUT /app/rest/projects/{projectLocator}/defaultTemplate | Update the default template of the matching project. |
| ProjectApi | setParentProject | PUT /app/rest/projects/{projectLocator}/parentProject | Update the parent project of the matching project. |
| ProjectApi | setProjectField | PUT /app/rest/projects/{projectLocator}/{field} | Update a field of the matching project. |
| ProjectApi | setSubprojectsOrder | PUT /app/rest/projects/{projectLocator}/order/projects | Update all subprojects order of the matching project. |
| ProjectApi | updateBuildParameter | PUT /app/rest/projects/{projectLocator}/parameters/{name} | Update build parameter. |
| ProjectApi | updateBuildParameterSpecification | PUT /app/rest/projects/{projectLocator}/parameters/{name}/type/rawValue | Update build parameter specification. |
| ProjectApi | updateBuildParameterType | PUT /app/rest/projects/{projectLocator}/parameters/{name}/type | Update type of build parameter. |
| ProjectApi | updateBuildParameterValue | PUT /app/rest/projects/{projectLocator}/parameters/{name}/value | Update value of build parameter. |
| ProjectApi | updateBuildParameters | PUT /app/rest/projects/{projectLocator}/parameters | Update build parameters. |
| ProjectApi | updateFeature | PUT /app/rest/projects/{projectLocator}/projectFeatures/{featureLocator} | Update a matching feature. |
| ProjectApi | updateFeatures | PUT /app/rest/projects/{projectLocator}/projectFeatures | Update all features. |
| RootApi | getApiVersion | GET /app/rest/apiVersion | Get the API version. |
| RootApi | getPluginInfo | GET /app/rest/info | Get the plugin info. |
| RootApi | getRootEndpointsOfRoot | GET /app/rest | Get root endpoints. |
| RootApi | getVersion | GET /app/rest/version | Get the TeamCity server version. |
| ServerApi | addLicenseKeys | POST /app/rest/server/licensingData/licenseKeys | Add license keys. |
| ServerApi | deleteLicenseKey | DELETE /app/rest/server/licensingData/licenseKeys/{licenseKey} | Delete a license key. |
| ServerApi | downloadFileOfServer | GET /app/rest/server/files/{areaId}/files{path} | Download specific file. |
| ServerApi | getAllMetrics | GET /app/rest/server/metrics | Get metrics. |
| ServerApi | getAllPlugins | GET /app/rest/server/plugins | Get all plugins. |
| ServerApi | getBackupStatus | GET /app/rest/server/backup | Get the latest backup status. |
| ServerApi | getFileMetadataOfServer | GET /app/rest/server/files/{areaId}/metadata{path} | Get metadata of specific file. |
| ServerApi | getFilesListForSubpathOfServer | GET /app/rest/server/files/{areaId}/{path} | List files under this path. |
| ServerApi | getFilesListOfServer | GET /app/rest/server/files/{areaId} | List all files. |
| ServerApi | getLicenseKey | GET /app/rest/server/licensingData/licenseKeys/{licenseKey} | Get a license key. |
| ServerApi | getLicenseKeys | GET /app/rest/server/licensingData/licenseKeys | Get all license keys. |
| ServerApi | getLicensingData | GET /app/rest/server/licensingData | Get the licensing data. |
| ServerApi | getServerField | GET /app/rest/server/{field} | Get a field of the server info. |
| ServerApi | getServerInfo | GET /app/rest/server | Get the server info. |
| ServerApi | getZippedFileOfServer | GET /app/rest/server/files/{areaId}/archived{path} | Get specific file zipped. |
| ServerApi | startBackup | POST /app/rest/server/backup | Start a new backup. |
| TestApi | getTest | GET /app/rest/tests/{testLocator} | Get a matching test. |
| TestApi | getTests | GET /app/rest/tests | Get all tests. |
| TestOccurrenceApi | getAllTestOccurrences | GET /app/rest/testOccurrences | Get all test occurrences. |
| TestOccurrenceApi | getTestOccurrence | GET /app/rest/testOccurrences/{testLocator} | Get a matching test occurrence. |
| UserApi | addRoleToUser | POST /app/rest/users/{userLocator}/roles | Add a role to the matching user. |
| UserApi | addRoleToUserAtScope | PUT /app/rest/users/{userLocator}/roles/{roleId}/{scope} | Add a role with the specific scope to the matching user. |
| UserApi | addUser | POST /app/rest/users | Create a new user. |
| UserApi | addUserToken | POST /app/rest/users/{userLocator}/tokens | Create a new authentication token for the matching user. |
| UserApi | deleteUser | DELETE /app/rest/users/{userLocator} | Delete user matching the locator. |
| UserApi | deleteUserField | DELETE /app/rest/users/{userLocator}/{field} | Remove a property of the matching user. |
| UserApi | deleteUserToken | DELETE /app/rest/users/{userLocator}/tokens/{name} | Remove an authentication token from the matching user. |
| UserApi | getAllUserGroups | GET /app/rest/users/{userLocator}/groups | Get all groups of the matching user. |
| UserApi | getAllUserRoles | GET /app/rest/users/{userLocator}/roles | Get all user roles of the matching user. |
| UserApi | getAllUsers | GET /app/rest/users | Get all users. |
| UserApi | getUser | GET /app/rest/users/{userLocator} | Get user matching the locator. |
| UserApi | getUserField | GET /app/rest/users/{userLocator}/{field} | Get a field of the matching user. |
| UserApi | getUserGroup | GET /app/rest/users/{userLocator}/groups/{groupLocator} | Get a user group of the matching user. |
| UserApi | getUserPermissions | GET /app/rest/users/{userLocator}/permissions | Get all permissions effective for the matching user. |
| UserApi | getUserProperties | GET /app/rest/users/{userLocator}/properties | Get all properties of the matching user. |
| UserApi | getUserProperty | GET /app/rest/users/{userLocator}/properties/{name} | Get a property of the matching user. |
| UserApi | getUserRolesAtScope | GET /app/rest/users/{userLocator}/roles/{roleId}/{scope} | Get a user role with the specific scope from the matching user. |
| UserApi | getUserTokens | GET /app/rest/users/{userLocator}/tokens | Get all authentication tokens of the matching user. |
| UserApi | removeUserFromGroup | DELETE /app/rest/users/{userLocator}/groups/{groupLocator} | Remove the matching user from the specific group. |
| UserApi | removeUserProperty | DELETE /app/rest/users/{userLocator}/properties/{name} | Remove a property of the matching user. |
| UserApi | removeUserRememberMe | DELETE /app/rest/users/{userLocator}/debug/rememberMe | Remove the RememberMe data of the matching user. |
| UserApi | removeUserRoleAtScope | DELETE /app/rest/users/{userLocator}/roles/{roleId}/{scope} | Remove a role with the specific scope from the matching user. |
| UserApi | replaceUser | PUT /app/rest/users/{userLocator} | Update user matching the locator. |
| UserApi | setUserField | PUT /app/rest/users/{userLocator}/{field} | Update a field of the matching user. |
| UserApi | setUserGroups | PUT /app/rest/users/{userLocator}/groups | Update groups of the matching user. |
| UserApi | setUserProperty | PUT /app/rest/users/{userLocator}/properties/{name} | Update a property of the matching user. |
| UserApi | setUserRoles | PUT /app/rest/users/{userLocator}/roles | Update user roles of the matching user. |
| VcsRootApi | addVcsRoot | POST /app/rest/vcs-roots | Add a new VCS root. |
| VcsRootApi | deleteAllVcsRootProperties | DELETE /app/rest/vcs-roots/{vcsRootLocator}/properties | Delete all properties of the matching VCS root. |
| VcsRootApi | deleteVcsRoot | DELETE /app/rest/vcs-roots/{vcsRootLocator} | Remove VCS root matching the locator. |
| VcsRootApi | deleteVcsRootProperty | DELETE /app/rest/vcs-roots/{vcsRootLocator}/properties/{name} | Delete a property of the matching VCS root. |
| VcsRootApi | getAllVcsRootProperties | GET /app/rest/vcs-roots/{vcsRootLocator}/properties | Get all properties of the matching VCS root. |
| VcsRootApi | getAllVcsRoots | GET /app/rest/vcs-roots | Get all VCS roots. |
| VcsRootApi | getRootEndpoints | GET /app/rest/vcs-roots/{vcsRootLocator} | Get root endpoints. |
| VcsRootApi | getVcsRootField | GET /app/rest/vcs-roots/{vcsRootLocator}/{field} | Get a field of the matching VCS root. |
| VcsRootApi | getVcsRootInstances | GET /app/rest/vcs-roots/{vcsRootLocator}/instances | Get all VCS root instances of the matching VCS root. |
| VcsRootApi | getVcsRootProperty | GET /app/rest/vcs-roots/{vcsRootLocator}/properties/{name} | Get a property on the matching VCS root. |
| VcsRootApi | getVcsRootSettingsFile | GET /app/rest/vcs-roots/{vcsRootLocator}/settingsFile | Get the settings file of the matching VCS root. |
| VcsRootApi | setVcsRootField | PUT /app/rest/vcs-roots/{vcsRootLocator}/{field} | Update a field of the matching VCS root. |
| VcsRootApi | setVcsRootProperties | PUT /app/rest/vcs-roots/{vcsRootLocator}/properties | Update all properties of the matching VCS root. |
| VcsRootApi | setVcsRootProperty | PUT /app/rest/vcs-roots/{vcsRootLocator}/properties/{name} | Update a property of the matching VCS root. |
| VcsRootInstanceApi | deleteVcsRootInstanceField | DELETE /app/rest/vcs-root-instances/{vcsRootInstanceLocator}/{field} | Remove a field of the matching VCS root instance. |
| VcsRootInstanceApi | deleteVcsRootInstanceRepositoryState | DELETE /app/rest/vcs-root-instances/{vcsRootInstanceLocator}/repositoryState | Delete the last repository state of the matching VCS root instance. |
| VcsRootInstanceApi | downloadFile | GET /app/rest/vcs-root-instances/{vcsRootInstanceLocator}/files/latest/files{path} | Download specific file. |
| VcsRootInstanceApi | getAllVcsRootInstances | GET /app/rest/vcs-root-instances | Get all VCS root instances. |
| VcsRootInstanceApi | getFileMetadata | GET /app/rest/vcs-root-instances/{vcsRootInstanceLocator}/files/latest/metadata{path} | Get metadata of specific file. |
| VcsRootInstanceApi | getFilesList | GET /app/rest/vcs-root-instances/{vcsRootInstanceLocator}/files/latest | List all files. |
| VcsRootInstanceApi | getFilesListForSubpath | GET /app/rest/vcs-root-instances/{vcsRootInstanceLocator}/files/latest/{path} | List files under this path. |
| VcsRootInstanceApi | getVcsRootInstance | GET /app/rest/vcs-root-instances/{vcsRootInstanceLocator} | Get VCS root instance matching the locator. |
| VcsRootInstanceApi | getVcsRootInstanceCreationDate | GET /app/rest/vcs-root-instances/{vcsRootInstanceLocator}/repositoryState/creationDate | Get the creation date of the matching VCS root instance. |
| VcsRootInstanceApi | getVcsRootInstanceField | GET /app/rest/vcs-root-instances/{vcsRootInstanceLocator}/{field} | Get a field of the matching VCS root instance. |
| VcsRootInstanceApi | getVcsRootInstanceProperties | GET /app/rest/vcs-root-instances/{vcsRootInstanceLocator}/properties | Get all properties of the matching VCS root instance. |
| VcsRootInstanceApi | getVcsRootInstanceRepositoryState | GET /app/rest/vcs-root-instances/{vcsRootInstanceLocator}/repositoryState | Get the repository state of the matching VCS root instance. |
| VcsRootInstanceApi | getZippedFile | GET /app/rest/vcs-root-instances/{vcsRootInstanceLocator}/files/latest/archived{path} | Get specific file zipped. |
| VcsRootInstanceApi | requestPendingChangesCheck | POST /app/rest/vcs-root-instances/checkingForChangesQueue | Check for the pending changes for all VCS root instances. |
| VcsRootInstanceApi | setVcsRootInstanceField | PUT /app/rest/vcs-root-instances/{vcsRootInstanceLocator}/{field} | Get a field of the matching VCS root instance. |
| VcsRootInstanceApi | setVcsRootInstanceRepositoryState | PUT /app/rest/vcs-root-instances/{vcsRootInstanceLocator}/repositoryState | Update the repository state of the matching VCS root instance. |
| VcsRootInstanceApi | triggerCommitHookNotification | POST /app/rest/vcs-root-instances/commitHookNotification | Send the commit hook notification. |
- Agent
- AgentLocator
- AgentPool
- AgentPoolLocator
- AgentPools
- AgentRequirement
- AgentRequirements
- Agents
- ArtifactDependencies
- ArtifactDependency
- AuditAction
- AuditEvent
- AuditEvents
- AuditLocator
- AuthorizedInfo
- Branch
- BranchLocator
- BranchVersion
- Branches
- Build
- BuildCancelRequest
- BuildChange
- BuildChanges
- BuildLocator
- BuildQueueLocator
- BuildTriggerCustomization
- BuildTriggeringOptions
- BuildType
- BuildTypeLocator
- BuildTypes
- Builds
- Change
- ChangeLocator
- Changes
- CloudImage
- CloudImages
- CloudInstance
- CloudInstances
- CloudProfile
- CloudProfiles
- Comment
- Commiter
- Commiters
- Compatibilities
- Compatibility
- CompatibilityPolicy
- Customizations
- Datas
- EnabledInfo
- Entries
- Entry
- Environment
- Feature
- Features
- File
- FileChange
- FileChanges
- Files
- Group
- Groups
- Href
- Investigation
- InvestigationLocator
- Investigations
- Issue
- IssueUsage
- Issues
- IssuesUsages
- Items
- LicenseKey
- LicenseKeys
- LicensingData
- Link
- Links
- MetaData
- Metric
- MetricTag
- MetricTags
- MetricValue
- MetricValues
- Metrics
- MultipleOperationResult
- Mute
- MuteLocator
- Mutes
- NewBuildTypeDescription
- NewProjectDescription
- OperationResult
- ParsedTestName
- Permission
- PermissionAssignment
- PermissionAssignments
- PermissionRestriction
- PermissionRestrictions
- PinInfo
- Plugin
- Plugins
- Problem
- ProblemLocator
- ProblemOccurrence
- ProblemOccurrenceLocator
- ProblemOccurrences
- ProblemScope
- ProblemTarget
- Problems
- ProgressInfo
- Project
- ProjectFeature
- ProjectFeatures
- ProjectLocator
- Projects
- Properties
- Property
- Related
- RelatedEntities
- RelatedEntity
- RepositoryState
- Requirements
- Resolution
- Revision
- Revisions
- Role
- Roles
- Server
- SnapshotDependencies
- SnapshotDependency
- StateField
- Step
- Steps
- Tag
- TagLocator
- Tags
- Test
- TestCounters
- TestLocator
- TestOccurrence
- TestOccurrenceLocator
- TestOccurrences
- TestRunMetadata
- Tests
- Token
- Tokens
- Trigger
- TriggeredBy
- Triggers
- Type
- TypedValue
- User
- UserGroupLocator
- UserLocator
- Users
- VcsCheckStatus
- VcsLabel
- VcsLabels
- VcsRoot
- VcsRootEntries
- VcsRootEntry
- VcsRootInstance
- VcsRootInstanceLocator
- VcsRootInstances
- VcsRootLocator
- VcsRoots
- VcsStatus
All endpoints do not require authorization.