Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space IDS and version 8.2.0

Create OTP list

POST /method-name/otp-list
Request parameters

...

  1. 404
    Not Found. Invalid method-name.
  2. 405
    The http method is not valid
Code Block
languagetext
themeRDark
titleExample of otp-list
POST /otp.1/otp-list?expires=20130101
<otp-list id="f000d9d5-d97d-4347-b4ff-e2edb72b35fd" expires="20130101"size="50">
<sequence>
<otp index="1">123456</otp>
<otp index="2">234567</otp>
</sequence>
</otp-list>

...

  1. 404
    Not Found. Invalid method-name.
  2. 405
    The http method is not valid
Code Block
theme
languagetextRDark
titleExample of _batch
POST /otp.1/otp-list/_batch?batch-size=100
<batch-response batch-size="100">
<otp-list id="ba6206b7-2469-4b92-8022-83ce21bc3e39">
<otp-list id="d07c0903-f7c9-4b55-a22b-df51ce60bbd7">
...
</batch-response>

...

  1. 404
    Not Found. The uniqueID, login or objectGuid parameter does not identify a user.
  2. 403
    Forbidden. The status of the list identified by list-id is not "free".
  3. 404
    Not Found. Invalid method-name or unknown list-id.
  4. 405
    The http method is not valid.
Code Block
languagetextthemeRDark
titleExample of list association
PUT /otp.1/otp-list/d07c0903-f7c9-4b55-a22b-df51ce60bbd7?uniqueID=user1
<otp-list id="d07c0903-f7c9-4b55-a22b-df51ce60bbd7">
<status value="associated" index="1">
<user-info uniqueID="user1"/>
</status>
</otp-list>

...

  1. 404
    Not Found. Invalid method-name or unknown list-id.
  2. 405
    The http method is not valid
Code Block
languagetextthemeRDark
titleExample of list status lookup by list-id
GET /otp.1/otp-list/c016051b-8980-4165-8c5b-e4b5cd1bace6
<otp-list id="c016051b-8980-4165-8c5b-e4b5cd1bace6">
<status value="active" index="B1" remaining="12">
<user-info uniqueID="user1"/>
</status>
</otp-list>

...

  1. 404
    Not Found. Invalid method-name.
  2. 405
    The http method is not valid
Code Block
languagetextthemeRDark
titleExample of list status lookup by list-id
GET /otp.1/user-info/_query?uniqueID=user1
<user-info uniqueID="user1">
<otp-list id="f000d9d5-d97d-4347-b4ff-e2edb72b35fd">
<status value="active" index="56"/>
</otp-list>
<otp-list id="d38400e9-ce9e-4f93-bef7-6e2d65d2cbf9">
<status value="associated" index="1"/>
</otp-list>
</user-info>

...