- Home
- API MCP Server
- tools
- support
- other
- Jira Projects Issue Type
Jira Projects Issue Type
Returns the available projects and issue types that are available from the Jira ticket tracking system.
| Tool | Description |
|---|---|
f5xc-api-support-jira-projects-issue-type-create | JIRA Projects & Issue Types. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Jira Projects Issue Type resources:
Create Jira Projects Issue Type
Section titled “Create Jira Projects Issue Type”“Create a jira-projects-issue-type named ‘example’ in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/jira_projects_issue_types" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/jira_projects_issue_types/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/jira_projects_issue_types" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @jira_projects_issue_type.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/jira_projects_issue_types/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"