Open
1 of 1 issue completedDescription
I need monitor my Azure OCR API status, But I can't complete the configuration.
Here is the curl type reuqst:
curl --location --request POST 'https://ocrapi.my.site/computervision/imageanalysis:analyze?features=read&model-version=latest&language=en&api-version=2024-02-01' \
--header 'User-Agent: Apifox/1.0.0 (https://apifox.com)' \
--header 'Content-Type: application/json' \
--header 'Ocp-Apim-Subscription-Key: my-key-value' \
--header 'Accept: */*' \
--header 'Host: ocrapi.my.site' \
--header 'Connection: keep-alive' \
--data-raw '{
"url": "my-img-url"
}'
You can see that it can accept a application/json type as the body request, but it seems that the current configuration does not support this operation.
In addition, I noticed that other Issues asked for adding custom check interval, this is a scenario, because requesting this API is charged, so maybe that would be a good idea.