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

Input parameters

Name

Description

GUID

The unique identification string of the workflow ticket for which existence is to be verified.

Returns

Response description

Name

Description

HTTP 200

For valid requests, this call returns a HTTP 200 message and the following data in the message body:

  • Result: Integer result code indicating success (1) or failure. For more information, see Workflow result codes.

HTTP 400

For invalid requests, this call returns HTTP 400 Bad Request and the following data in the message body:

  • error: The reason for the error.
  • error_description: If available, additional information about how to retry the request.

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
}