• Account Management
  • Alias
  • Application
  • Application Admin
  • Application Licensing
  • Audit
  • Backup
  • Directory
  • Directory Admin
  • Group Admin
  • Group Level Admin
  • Groups
  • Groups Membership
  • LDAP Connection Pool
  • Look and Feel
  • Mail Server
  • Remember Me
  • SAML Configuration
  • Server Info
  • Sessions
  • Token
  • User Admin
  • User Authentication
  • Users
Server
Crowd Data Center / / REST API

Remember Me

Postman Collection
OpenAPI
GET

Get configuration

Returns the current remember-me configuration

Forge and OAuth2 apps cannot access this REST resource.

Request

This request has no parameters.

Responses

returned if fetching the current configuration was successful

application/json

any

GET/rest/admin/1.0/remember-me/config
1 2 3 curl --request GET \ --url 'http://{baseurl}/rest/rest/admin/1.0/remember-me/config' \ --header 'Accept: application/json'
200Response
1 2 3 4 { "expirationPeriod": 300, "enabled": true }
PUT

Update configuration

Updates the remember me configuration

Forge and OAuth2 apps cannot access this REST resource.

Request

Request bodyapplication/json

an entity with Remember Me configuration

enabled

boolean

expirationPeriod

integer

Responses

returned if saving the configuration was successful

application/json

any

PUT/rest/admin/1.0/remember-me/config
1 2 3 4 5 6 7 8 curl --request PUT \ --url 'http://{baseurl}/rest/rest/admin/1.0/remember-me/config' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --data '{ "expirationPeriod": 300, "enabled": true }'
204Response
1 2 3 4 { "expirationPeriod": 300, "enabled": true }
POST

Expire all tokens

Expires all active remember-me tokens

Forge and OAuth2 apps cannot access this REST resource.

Request

This request has no parameters.

Responses

returned if the tokens have been successfully expired

POST/rest/admin/1.0/remember-me/expire-all
1 2 curl --request POST \ --url 'http://{baseurl}/rest/rest/admin/1.0/remember-me/expire-all'

Rate this page: