Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

[GET] /community/item/getInventoryByProfileIDs

Example request

Request

parametertypevaluecomments
titlestr/enumage1, age2, age3, age4
profileidsarr[int][196240]

Response

AoE2:DE

{
  "result": {
    "code": 0,
    "message": "SUCCESS"
  },
  "itemInstancesByProfileID": [
    {
      "\"196240\"": []
    }
  ]
}
{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "result": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "code",
                "message"
            ]
        },
        "itemInstancesByProfileID": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "\"196240\"": {
                        "type": "array"
                    }
                },
                "required": [
                    "\"196240\""
                ]
            }
        }
    },
    "required": [
        "itemInstancesByProfileID",
        "result"
    ]
}