get_apifox_project_id_and_api_id_from_url
Extract Apifox project ID and API ID directly from a provided URL to enable integration and understanding of API details within Apifox projects.
Instructions
Get the project ID and API ID of Apifox from the URL.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | The text to extract the project id and api id from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"text": {
"description": "The text to extract the project id and api id from",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}