Doc omission for equipment obj on characters?

Doc omission for equipment obj on characters?

in API Development

Posted by: Legoman.2978

Legoman.2978

Q:

Howdy,

Looking at the characters resource, I have this coat equipped on a toon:

                {
				"id": 79022,
				"slot": "Coat",
				"upgrades": [71425],
				"skin": 6381,
				"stats": {
					"id": 161,
					"attributes": {
						"Power": 134,
						"Precision": 96,
						"CritDamage": 96
					}
				},
				"binding": "Character",
				"bound_to": "My Toon Name"
			}

But the wiki entry under “Each equipment object can have the following properties” doesn’t mention the “stats”, “binding” or “bound_to” elements.

Is that an omission or am I not reading something correctly?

Thanks!
legoman

Doc omission for equipment obj on characters?

in API Development

Posted by: Lawton Campbell

Lawton Campbell

Web Programmer

A:

The wiki needs to be updated. binding/bound_to should be straightforward, but the stats.id references /v2/itemstats and indicates which stats were selected for a choosy-stat item.

Doc omission for equipment obj on characters?

in API Development

Posted by: Legoman.2978

Legoman.2978

Thanks Lawton! Just getting started with the API and I didn’t want to assume I was looking in the right place.