POST Workflow/Ticket/Exists
Verifies whether a workflow ticket exists.
Requirements
- Token scope: Any valid scope, such as Agent, Certificate, or SSH
Headers
-
Content type: Content-Type:application/json.
- Token: The bearer access token that you received. For example, Authorization:Bearer 4MyGeneratedBearerTknz==. For more information, see Passing a bearer token in your API calls.
Parameters
Name |
Description |
---|---|
GUID |
The unique identification string of the workflow ticket for which existence is to be verified. |
Returns
Name |
Description |
---|---|
HTTP 200 |
For valid requests, this call returns a HTTP 200 message and the following data in the message body:
|
HTTP 400 |
For invalid requests, this call returns HTTP 400 Bad Request and the following data in the message body:
|
Example: Confirm an Existing Workflow Ticket
Request
POST https://tpp.venafi.example/vedsdk/Workflow/Ticket/Exists Authorization:Bearer 4MyGeneratedBearerTknz== { "GUID":"6ede0e12-f7c0-4068-9977-001076205c84" }
Response
HTTP/1.1 200 OK { "Result": 1 }