InDate
When data is created, the indate is set as a key value of the data(information of users, games, ranking, guilds, mail, etc.).
- Every user, each table row, mail, guild, etc., all have their own inDate value.
- inDate is used as a unique key value of the data.(Never duplicated.)
How to look up the inDate
inDate can be checked when looking up data.
Please refer to the developer documentation below for various ways to look up the inDate.
- Check inDate value using the inDate lookup method in BackendReturnObject
- Manually check the inDate value in BackendReturnObject There are various data lookup methods, including game information lookup, mail lookup, and guild lookup.
User inDate
A user's inDate is a key value unique to the user and never changes.
You can use it to interact with other people's information in functions such as game information lookup, ranking lookup, mail, and adding friends.
User inDate can be checked by using the following methods.
It may also be returned with a different column name, depending on the method called.
Method | inDate Key Name | Description |
---|---|---|
Check user's own inDate value | UserIndate | inDate of the logged in user |
Check other user's inDate value | inDate | inDate of the searched user |
Look up ranking list | gamerIndate | inDate of the rank holder |
Look up game information | owner_inDate | inDate of the user who owns the row |
Look up friends list | inDate | Friend's inDate |
Look up mail list | receiverInDate | Recipient's inDate |
Look up mail list | senderInDate | Sender's inDate |
Look up guild list | masterInDate | Guild master's inDate |
Look up guild member list | gamerInDate | Guild member's inDate |
Game information inDate
A user can possess multiple rows in a single table in BACKND.
To identify the rows, each row has a unique inDate as a key value.
You can look up, edit, delete, and update the ranking of the row by using the row's inDate.
The inDate in game information can be checked using the following methods:
Method | inDate Key Name | Description |
---|---|---|
Look up game information | inDate | inDate of the row |
Look up my game information | inDate | inDate of the row |
Guild inDate
Each guild has a unique inDate as its key value.
You can look up a guild by using the guild's inDate.
Guild inDate can be checked by using the following methods:
It may also be returned with a different column name, depending on the method called.
Method | inDate Key Name | Description |
---|---|---|
Look up guild list | inDate | Guild inDate |
Look up my guild information | inDate | inDate of my guild |
Look up guild inDate by guild name | guildIndate | inDate of the looked-up guild |
Mail/message inDate
Each piece of mail and message has a unique inDate as its key value.
You can use the inDate to look up, receive, and delete mail/messages.
You can check the mail/message inDate by using the following methods:
Method | inDate Key Name | Description |
---|---|---|
Look up mail list | inDate | Mail inDate |
Look up received message | inDate | inDate of the received message |
Look up sent message | inDate | inDate of the sent message |