v1
latestOpenAPI 3.0.32026-07-17465.6 KBservices
Generate request
Generate a valid request for a specific operation within a service. Returns the generated path, headers, body, and content type.
post/.services/{serviceName}
Path parameters
serviceNamestring required
Example:petstore
Service name. Use .root for root-level services.
Request body
Example request
{
"path": "/pet/{petId}",
"method": "GET",
"context": {
"petId": 123,
"name": "Fluffy"
}
}Response
Successful response
Example response
{
"path": "/pet/123",
"contentType": "application/json"
}