Error Messages in Adobe Captivate API call
I am using Adobe Captivate Prime as Integration Admin. I'm trying to POST to
https://captivateprime.adobe.com/primeapi/v2/users
and I keep getting the error: "{"status":"BAD_REQUEST","title":"Model path doesn't exist","source":{"info":""}}"
What does this mean? Is there a reference for all error messages?
My angular post is:
url: "https://captivateprime.adobe.com/primeapi/v2/users",
method: "POST",
data: JSON.stringify(myData),
headers: {
"Accept": "application/vnd.api+json",
"Authorization":"oauth [my token]"
}
.....
and myData is a JSON object with all three required parameters listed under the attributes node.
Can anyone help?
