Logo
MicroStrategy REST API API Documentation

Set a document instance back to prompt status

POST {{baseUrl}}/api/documents/:id/instances/:instanceId/rePrompt

Set a document instance in a specific project back to prompt status. You obtain the authorization token needed to execute the request using POST /auth/login and the project ID using GET /project; you pass the authorization token and the project ID in the request header. You identify the document and the document instance by specifying the document ID and the document instance ID in the path of the request; you get the document instance ID using POST /documents/{id}/instances.

 

Body PARAM

Key Datatype Required Description 
fields
null



HEADERS

Key Datatype Required Description 
X-MSTR-AuthToken
string (Required) Authorization token
X-MSTR-ProjectID
string (Required) Project ID




RESPONSES

status OK

{ "mid": "29F8DF61F9442C1E43E32ABBE428007E" }



Curl
curl -X POST 'baseUrl/api/documents/:id/instances/:instanceId/rePrompt?fields=' -H 'X-MSTR-AuthToken: authToken' -H 'X-MSTR-ProjectID: projectId'

ENDPOINTS