Extracts date, currency, and numbers from natural-language text. This API accepts tenant name, input phrase, and time zone as input parameters and returns date, currency, and time, with options to modify the output's date format. For example:
The Acme agreement is expected to start on the first Monday of 2021 and to end two years later, and it is valued at fifty thousand dollars, payable in the first three months of next year.
Tenant name
Stringified form of JSON representing the iChronosOptions object.
Input phrase to be resolved
Instance URL
User ID
User name
curl --request GET \--url 'https://idd_url/idd/api/v2/congasfdc/analyze/normalizephrase?input=effective+as+of+01+%2F+01%2F+2019' \--header 'Accept: application/json' \--header 'X-API-Key: 123'
1{2"phrase": "pull up quotes expiring in the next 90 days that are starting next week",3"entities": [4{5"entity": "in the next 90 days",6"startIndex": 24,7"endIndex": 42,8"type": "daterange",9"resolution": {10"values": [11{12"type": "daterange",13"start": "2020-09-11",14"end": "2020-12-10"15}16]17}18},19{20"entity": "starting next week",21"startIndex": 53,22"endIndex": 70,23"type": "daterange",24"resolution": {25"values": [26{27"type": "daterange",28"Mod": "since",29"start": "2020-09-14"30}31],32"altValues": [33{34"type": "daterange",35"start": "2020-09-14",36"end": "2020-09-20",37"notes": "starting"38}39]40}41}42]43}