Disable TOTP

DELETE /auth/totp

Disable TOTP (Time-based One-Time Password) authentication. It requires two-factor authentication verification.

application/json

Body Required

  • totp string

    TOTP verification code

  • email_otp string

    Email OTP verification code

  • fido_authentication_response object

    FIDO authentication response

  • recovery_code string

    Recovery code for two-factor authentication

Responses

  • 200

    TOTP disabled

  • 400

    TOTP not enabled or verification failed

DELETE /auth/totp
curl \
 --request DELETE 'http://api.example.com/auth/totp' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"totp":"string","email_otp":"string","fido_authentication_response":{},"recovery_code":"string"}'
Request examples
{
  "totp": "string",
  "email_otp": "string",
  "fido_authentication_response": {},
  "recovery_code": "string"
}














































































































































































































































































































































































































































































































































































































































































































































































































































































Retrieve a model corresponding at given ID and return it as a JSON object.

GET /data/search-filters/{instance_id}

Path parameters

  • instance_id Required

Responses

  • 200

    Model as a JSON object

  • 400

    Statement error

  • 404

    Value error

GET /data/search-filters/{instance_id}
curl \
 --request GET 'http://api.example.com/data/search-filters/a24a6ea4-ce75-4665-a070-57453082c25' \
 --header "Authorization: $API_KEY"






















































































































































































































































































































































































































































































































































































Update working file modification date

PUT /actions/working-files/{working_file_id}/modified

Update the modification date of a working file to the current timestamp. Used to track when the file was last modified.

Path parameters

  • working_file_id string(uuid) Required

    Working file unique identifier

Responses

  • 200 application/json

    Working file modification date updated successfully

    Hide response attributes Show response attributes object
    • id string(uuid)

      Working file unique identifier

    • updated_at string(date-time)

      Updated modification timestamp

PUT /actions/working-files/{working_file_id}/modified
curl \
 --request PUT 'http://api.example.com/actions/working-files/a24a6ea4-ce75-4665-a070-57453082c25/modified' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "id": "b35b7fb5-df86-5776-b181-68564193d36",
  "updated_at": "2023-01-01T12:30:00Z"
}