Intent Registry Resolve endpoint used for securely looking up intent location

Request Information

HTTP Method

POST

URI Parameters

None.

Body Parameters

ResolveIntentRequest
Name Description Type Additional information
ConsumerAccessToken REQUIRED Consumer Access token string

None.

IntentId REQUIRED The ID of the intent requested string

None.

ActionName REQUIRED The action of the intent requested string

None.

Response Information
ResolveResponse
Name Description Type Additional information
href The location of the requested intent with transfer ticket as a parameter string

None.

intent_id The intent id requested string

None.

action_name The action Name requested string

None.

Response Formats

application/json, text/json
{
  "href": "sample string 1",
  "intent_id": "sample string 2",
  "action_name": "sample string 3"
}
application/xml, text/xml
<resolve_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://intents.mitchell1.com/businessobjects/service/v1">
  <action_name>sample string 3</action_name>
  <href>sample string 1</href>
  <intent_id>sample string 2</intent_id>
</resolve_response>