Guild Storage log

Guild Storage log

in API Development

Posted by: Celebrimbor.7210

Celebrimbor.7210

Howdy,

Would appreciate any assistance.

Is there anyway of viewing the guild storage log? We are trying to identify items withdrawn from the consumables tab along with quantities and the users withdrawing those items.

Regards
Cele

Guild Storage log

in API Development

Posted by: Lawton Campbell

Lawton Campbell

Web Programmer

Next

/v2/guild/:id/log should provide stash events with the appropriate data; e.g. I added some items to my test guild, then withdrew them to generate the following two events:

GET /v2/guild/2546752E-7C2E-E611-9106-0862664D7672/log?access_token=ABE86FC6-9CF5-3E41-8288-A45B6270CBE4325BAD8E-A23B-41DA-9FD1-E447D26853CE

{
“id”: 1923,
“time”: “2017-02-13T23:27:22.000Z”,
“type”: “stash”,
“user”: “Lawton Campbell.9413”,
“operation”: “withdraw”,
“item_id”: 12271,
“count”: 10,
“coins”: 0
},
{
“id”: 1919,
“time”: “2017-02-13T23:27:20.000Z”,
“type”: “stash”,
“user”: “Lawton Campbell.9413”,
“operation”: “deposit”,
“item_id”: 12271,
“count”: 10,
“coins”: 0
}

Note that the guild endpoint requires an API key from the guild leader with the “guilds” permission.

Guild Storage log

in API Development

Posted by: Celebrimbor.7210

Celebrimbor.7210

Thanks Lawton. I was referring to guild storage which is different to the guild stash from what I understand. Is the guild storage data logged anywhere that we can access?

Guild Storage log

in API Development

Posted by: Lawton Campbell

Previous

Lawton Campbell

Web Programmer

Ah, my b.

No, guild storage changes are currently not logged in a runtime querable format at all.

:/

Guild Storage log

in API Development

Posted by: Celebrimbor.7210

Celebrimbor.7210

Ok thanks for that