# Test Manager HTTP Request

> Test Manager HTTP Request activity in the UiPath Test Manager connector.

## Description

Performs HTTP requests to interact with Test Manager using existing connector and connection configuration. It enables you to make custom REST API calls to any Test Manager object.

## Project compatibility

Windows | Cross-platform

## Configuration

* **UiPath Test Manager connection** – The connection established in Integration Service. Access the dropdown menu to choose, add, or manage connections.
* **Method** – Select how your HTTP request should interact with Test Manager:
  + **GET** – Retrieves data without modifying it.
  + **POST** – Sends data to Test Manager, usually to create or update a resource.
  + **PUT** – Updates an existing resource.
  + **DELETE** – Removes a specified resource from Test Manager.
  + **PATCH** – Partially updates an existing resource.
* **Base URL** – Specifies the web address of the server where you want to send your request. For example, `https://store.example.com/search`.
* **Request URL** – Specifies the full URL for the REST API call.
* **Headers** – Specifies additional HTTP request headers.
  :::note
  The following headers are automatically added by the activity, and do not need to be included:
  * **Authorization: Bearer &lt;token&gt;**
  * **Accept: application/json**
  * **Content-Type: application/json**
  :::
* **Query parameters** – Specifies the query parameters as name–value pairs.
* **Body** – Specifies the payload content for the request.
