Hello @Clodagh Lynch , I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this! Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others ", I'll repost your solution in case you'd like to "Accept " the answer.
Issue: error message: "message": "AuthenticationKind is required for registering dataset using AnnotationFileUrls." when using Azure Vision AI API.
Solution: Worked once changed "authenticationKind
" to "authentication
".
{
"annotationKind": "imageObjectDetection",
"annotationFileUris": [
"https://xxx.blob.core.windows.net/xxx/xxx/train.json"
],
"authentication": {
"kind": "sas",
"sasToken": "your_blob_key"
}
}
Here is the related documentation: https://learn.microsoft.com/en-us/rest/api/computervision/datasets/register?view=rest-computervision-2023-02-01-preview&tabs=HTTP#request-body
Thank you again for your time and patience throughout this issue.
Regards,
Vasavi
Please remember to "Accept Answer" if any answer/reply helped, so that others in the community facing similar issues can easily find the solution.