Accessing Server by HTTP

Skip to end of metadata
Go to start of metadata
Search

Searching TeamCity 7.x Documentation

Table of Contents

In addition to the commands described here, there is a REST API that you can use for certain operations.

The examples below assume that your server web UI is accessible via http://buildserver:8111/ URL.

The TeamCity server supports basic HTTP authentication allowing to access certain web server pages and perform actions from various scripts. Please consult the manual for the client tool/library on how to supply basic HTTP credentials when issuing a request.

Use valid TeamCity server username and password to authenticate using basic HTTP authentication. The user should have appropriate permissions to perform the actions.

You may want to configure the server to use HTTPS as username and password are passed in insecure form during basic HTTP authentication.

To force using a basic HTTP authentication instead of redirecting to the login page if no credentials are supplied, prepend a path in usual TeamCity URL with "/httpAuth". For example:

The HTTP authentication can be useful when downloading build artifacts and triggering a build.

If you have Guest user enabled, it can be used to perform the action too. Use "/guestAuth" before the URL path to perform the action on Guest user behalf. For example:

Please make sure the user used to perform the authentication (or Guest user) has appropriate role to perform the necessary operation.

Triggering a Build From Script

To trigger a build, send the HTTP GET request for the URL: http://<server address>/httpAuth/action.html?add2Queue=<build type Id> performing basic HTTP authentication.

Some tools (for example, Wget) support the following syntax for the basic HTTP authentication:

Example:

You can trigger a build on a specific agent passing additional agentId parameter with the agent's Id. You can get the agent Id from the URL of the Agent's details page (Agents page > <agent name>). For example, you can infer that agent's Id equals "2", if its details page has the following URL:

To trigger a build on two agents at the same time, use the following URL:

To trigger a build on all enabled and compatible agents, use "allEnabledCompatible" as agent ID:

Triggering a Custom Build

TeamCity allows you to trigger a build with customized parameters. You can select particular build agent to run the build, define additional properties and environment variables, and select the particular sources revision (by specifying the last change to include in the build) to run the build with. These customizations will affect only the single triggered build and will not affect other builds of the build configuration.

To trigger a build on a specific change inclusively, use the following URL:

modificationId — internal TeamCity server id which can be obtained from the web diff url.

To trigger a build with custom parameters (system properties and environment variables), use:

Where <full property name> is a full property name with system./env. prefix or no prefix to define configuration parameter.
Please note that previous TeamCity versions used different syntax for this action. That syntax is still supported for compatibility reason, though.

To move build to the top of the queue, add the following to the query string

  • &moveToTop=true

To run a personal build, add &personal=true to the query string.

To run a build on a feature branch:



Labels:

admin admin Delete
server server Delete
script script Delete
trigger trigger Delete
build build Delete
Enter labels to add to this page:
Wait Image 
Looking for a label? Just start typing.
  1. Jun 04, 2009

    Any support yet for actually creating projects & builds via HTTP? I've just raised a feature request for this as it would be very handy to be able to script the configuration of projects/builds.

    1. Jun 04, 2009

      Right now this could be done via plugin only. I.e. you can write a plugin which will provide necessary HTTP interface and create projects using TeamCity open API.

  2. May 17, 2010

    Also some notes on "undocumented" (read: can change in any release without extra notice) abilities:
    Apply VCS label for a build.

    Then see Changes tab on build results for the result.

    Set TeamCity tag for a build (see also REST API):

    Pin a build in TeamCity:

    Stop/Cancel a build:

    Pause a Build Configuration:

    (pass pause=false to activate Build Configuration)

  3. Nov 26, 2012

    Hi,

    I hope it's the right place to ask.

    I use Java code to trigger a Maven build in TeamCity that uses a system property as build parameter. I keep a password in this property. I know that in TeamCity build it's secured, i.e. not displayed as plain text.

    Is it possible to pass a password (system property) using link "http://teamcity.jetbrains.com/httpAuth/action.html?add2Queue=bt10&name=<full property name1>&value=<value1>"?

    The property is passed if it's not secured, and an error is displayed if it's secured:

    "Server returned  HTTP response code 500 for URL: http://localhost:8081/httpAuth/action.html?add2Queue=bt4&name=system.test.suite&value=00&name=system.master.password&value=qwe123"

    Thanks,

    Denis