Fetch a Configuration
get
https://api.reach.talkylabs.com/rest/authentix/v1/configurations/{configurationId}
This operation allows to fetch a ConfigurationItem from the Reach platform.
This operation needs the configurationId
of the configuration to be fetched.
Parameters
configurationIdstringrequiredpath
The identifier of the configuration to be fetched.
Example 1: Fetch a configuration
The example below demonstrates how to fetch a configuration having the configurationId
attribute set to CIDXXXXXXXXXXXX
using the Reach Authentix API.
curl -X GET https://api.reach.talkylabs.com/rest/authentix/v1/configurations/CIDXXXXXXXXXXXX -H "ApiUser: $REACH_TALKYLABS_API_USER" -H "ApiKey: $REACH_TALKYLABS_API_KEY"
Output example
{
"appletId": "AIDXXXXXXXXXXXX",
"apiVersion": "1.0.0",
"configurationId": "CIDXXXXXXXXXXXX",
"serviceName": "myService",
"codeLength": 5,
"allowCustomCode": false,
"usedForDigitalPayment": false,
"defaultExpiryTime": 5,
"defaultMaxTrials": 5,
"defaultMaxControls": 3,
"smtpSettingId": "STPXXXXXXXXXXXXX",
"emailTemplateId": "TMEXXXXXXXXXXXXXXX",
"smsTemplateId": "TMSXXXXXXXXXXXXXXX",
"dateCreated": "2016-08-29T09:12:33.001Z",
"dateUpdated": "2016-08-29T09:12:35.001Z"
}