Extract text from body.
POST/text/extractor
Extracts text from body between given start and end markers
Request
Header Parameters
ipaas string
- application/json
Bodyrequired
startstringrequired
Start marker.
endstringrequired
End marker.
bodystringrequired
Body from which to extract the text
greedyboolean
When true, It include start and end marker in result.
caseSensitiveboolean
When true, It make the body case sensitive.
returnEmptyIfNotFoundboolean
When true, Return error if markers not found.
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
Schema
textstringrequired
{
"text": "string"
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
statusnumber
errorMessagestring
{
"status": 0,
"errorMessage": "string"
}