Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Database Information

...

Database NameDatabase TypeCollection Name
%tenant_code%_uracMongoDBtokens

 

Record Explanation

...

 Field NameTypeMandatoryUniqueIndexedDescription
_idMongo IDYESYESYESMongo Record ID
userIdStringYESYESNOThe User ID
tokenStringYESYESNOThe Token
expiresISODateYESNONOThe token expiration time
statusStringYESNONOThe Token Status
tsTime stampYESNONOrecord created timestamp
serviceStringYESNONOService Name

 

Sample

...

Code Block
languagejs
titleUser Record Sample
var data = {
	"_id": ObjectId('565095ba90a682f24386ecf0'),
	"userId": "565095ba90a682f24386ecef",
	"token": "fe69cffa-aa3f-4daf-b8f4-4d843ca93548",
	"expires": ISODate('2015-11-23T16:03:06.803Z'),
	"status": "active",
	"ts": 1448121786803,
	"service": "addUser"
};