QMetry: Fetch Requirement Details
qmetry_fetch_requirement_detailsRetrieve detailed information for a QMetry requirement by numeric ID and version. Access summary, description, status, and all metadata fields.
Instructions
Get detailed information for a specific QMetry requirement by numeric ID
Toolset: Requirements
Parameters:
projectKey (string): Project key - unique identifier for the project (default: "default")
baseUrl (string): The base URL for the QMetry instance (must be a valid URL)
id (number) required: Requirement numeric ID (required for fetching specific requirement details). This is the internal numeric identifier, not the entity key like 'MAC-RQ-730'. You can get this ID from requirement search results or by using filters.
version (number) required: Requirement version number (required for fetching specific requirement version details). This is the internal numeric identifier for the version.
Output Description: JSON object with requirement details including ID, key, summary, description, status, and all metadata
Use Cases: 1. Get requirement details by numeric ID 2. Retrieve requirement metadata for reporting 3. Get requirement summary and properties 4. Fetch requirement details before linking or updating 5. Access requirement field values and custom fields 6. Get requirement version-specific information
Examples:
Get requirement details by numeric ID
{
"id": 4791316,
"version": 1
}Expected Output: Detailed requirement information including summary, description, status, and all fields
Hints: 1. This API requires a numeric ID parameter, not entity key 2. If user provides entityKey (e.g., MAC-RQ-730), first call FETCH_REQUIREMENTS with a filter on entityKeyId to resolve the numeric ID 3. After resolving entityKey → numeric ID, call this tool with the resolved numeric ID 4. Version parameter is required - use 1 for the latest version unless user specifies otherwise 5. This tool provides complete requirement information including all custom fields 6. Use this tool to get detailed requirement information that's not available in the list view
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Requirement numeric ID (required for fetching specific requirement details). This is the internal numeric identifier, not the entity key like 'MAC-RQ-730'. You can get this ID from requirement search results or by using filters. | |
| baseUrl | No | The base URL for the QMetry instance (must be a valid URL) | |
| version | Yes | Requirement version number (required for fetching specific requirement version details). This is the internal numeric identifier for the version. | |
| projectKey | No | Project key - unique identifier for the project | default |