fr_get_project
Retrieve project details from Freshrelease using project ID or key to access specific project information and manage project operations.
Instructions
Get a project from Freshrelease by ID or key.
- project_identifier: numeric ID (e.g., 123) or key (e.g., "ENG")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_identifier | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_identifier": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Project Identifier"
}
},
"required": [
"project_identifier"
],
"title": "fr_get_projectArguments",
"type": "object"
}