Skip to content

List multiple Configurations

get
https://api.reach.talkylabs.com/rest/authentix/v1/configurations

This operation allows to retrieve all configurations defined in your applet.

When getting the configuration record list, results will be sorted based on the dateCreated field with the most recent record appearing first.

Parameters

  • pageSizeintegeroptional

    Maximum number of records to return per call. The default value is 20.

  • pageintegeroptional

    This is the page of record to be returned. This is to avoid returning duplicate data. The default value is 0.

Example 1: Retrieve all configurations

curl -X GET https://api.reach.talkylabs.com/rest/authentix/v1/configurations?pageSize=20 -H "ApiUser: $REACH_TALKYLABS_API_USER" -H "ApiKey: $REACH_TALKYLABS_API_KEY"
Output example
{
  "page": 0,
  "pageSize": 1,
  "totalConfigurations": 1,
  "totalPages": 1,
  "outOfPageRange": false,
  "configurations": [
    {
      "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"
    }
  ]
}