get https://testops.katalon.io/api/v1/projects/
A successful request to this endpoint returns details of a project.
Request
This request uses the GET method, which is used to retrieve information about a specific project from the specified resource.
For basic authorization, replace this with your actual username and password (or API key) in the header request in the username:password
or username:api_key
format. Your user creds are combined to form a Base64 encoded string.
The request data is provided as a JSON object. You need to provide the following required query parameters:
id
: the alphanumeric ID of the project.
Response
This API response provides information about the specified project.
See the following example:
{
"id": 934901,
"name": "First Project",
"teamId": xxx,
"team": {
"id": xxx,
"name": "Katalon team",
"organization": {
"id": 975092,
"name": "API Testing",
...
},
"organizationId": xxx
},
"status": "ACTIVE"
}
Refer to the following table about the response body parameters:
Property | Type | Description |
---|---|---|
id | integer | The unique identifier of the project. |
name | string | The name of the project. |
teamId | integer | The ID of the parent team. |
team | team object | The object that describes the team. |
status | string | The current status of the project: ARCHIVE or ACTIVE . |
Try it!
- Enter the Project ID in the required fields below.
- Select the language in Language.
- Enter your user name or API credentials.
- Review your API call and click Try it!