Classic APIs
ClassicEconomyApi
authedUserAssetResellableCopies

authedUserAssetResellableCopies

Gets resellable copies of an asset that the authenticated user owns.

Parameters

NameTypeDescription
userIdIdentifierThe ID of the authenticated user.
assetIdIdentifierThe ID of the asset to get resellable copies for.

Example

const { data: resellableCopies } = await ClassicEconomyApi.authedUserAssetResellableCopies({
  userId: 45348281,
  assetId: 3798248888,
}); 

Example Data

[
  {
    userAssetId: 45867931761,
    seller: {
      hasVerifiedBadge: false,
      id: 45348281,
      type: "User",
      name: "MightyPart",
    },
    price: null,
    serialNumber: null,
    isOnHold: false,
  },
] 

Endpoint

GET /v1/assets/{assetId}/users/{userId}/resellable-copies