WAX Unity Web3 Suite
AtomicMarket
AtomicMarket
  • Getting Started
  • Installation
    • WebGL Installation
  • Examples
    • Unity examples
    • Available assets for trading
    • Filtered assets lists available for trading
    • AssetExample
    • AuctionExample
    • BuyOfferExample
    • SalesExample
  • API Docs
    • AtomicMarketApiFactory
    • Assets
      • AssetsApi
        • AssetDto
          • DataDto
            • BackedTokensDto
            • CollectionDto
            • SchemaDto
              • FormatDto
            • TemplateDto
            • ImmutableDataDto
        • AssetsDto
          • DataDto
            • BackedTokensDto
            • CollectionDto
            • SchemaDto
              • FormatDto
            • TemplateDto
              • ImmutableDataDto
      • AssetsUriParameterBuilder
    • Auctions
      • AuctionsApi
        • AuctionDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
              • BidsDto
              • CollectionDto
              • PriceDto
      • AuctionsDto
        • DataDto
          • AssetDto
            • BackedTokensDto
            • SchemaDto
              • FormatDto
            • TemplateDto
              • ImmutableDataDto
          • BidsDto
          • CollectionDto
          • PriceDto
      • AuctionsUriParameterBuilder
    • BuyOffers
      • BuyOffersApi
        • BuyOfferDto
          • DataDto
        • AssetDto
          • BackedTokensDto
          • SchemaDto
            • FormatDto
          • TemplateDto
            • ImmutableDataDto
        • CollectionDto
        • PriceDto
        • BuyOffersDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
            • CollectionDto
            • PriceDto
      • BuyOffersUriParameterBuilder
    • Config
      • ConfigApi
        • ConfigDto
          • DataDto
            • SupportedPairsDto
              • PairsDataDto
            • SupportedTokensDto
    • MarketPlaces
      • MarketPlacesApi
        • MarketplaceDto
          • DataDto
        • MarketplacesDto
          • DataDto
    • Offers
      • OffersApi
        • OfferDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • CollectionDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
        • OffersDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • CollectionDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
      • OffersUriParameterBuilder
    • Pricing
      • PricingApi
        • PricesDto
          • DataDto
        • AssetPricingDto
          • DataDto
        • TemplatesDto
          • DataDto
      • PricingUriParametersBuilder
    • Sales
      • SalesApi
        • SaleDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
            • CollectionDto
            • PriceDto
        • SalesDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
              • CollectionDto
              • PriceDto
      • SalesUriParameterBuilder
    • Stats
      • StatsApi
        • StatsDto
          • DataDto
        • AccountDto
          • DataDto
            • ResultDto
            • SymbolDto
        • AccountsDto
          • DataDto
            • ResultDto
            • SymbolDto
        • CollectionDto
          • DataDto
            • ResultDto
            • SymbolDto
        • CollectionsDto
          • DataDto
            • ResultDto
            • SymbolDto
        • GraphDto
          • DataDto
            • ResultDto
            • SymbolDto
        • SalesDto
          • DataDto
            • ResultDto
            • SymbolDto
        • SchemaDto
          • DataDto
            • ResultDto
            • SymbolDto
      • StatsUriParameterBuilder
    • Transfers
      • TransfersApi
        • TransfersDto
          • DataDto
            • AssetDto
              • BackedTokensDto
              • CollectionDto
              • SchemaDto
                • FormatDto
              • TemplateDto
                • ImmutableDataDto
      • TransfersUriParameterBuilder
    • Core
      • HttpRequestBuilder
      • HttpResponseMessageExtension
      • IUriParameterBuilder
    • LogsDto
      • DataDto
Powered by GitBook
On this page
  • Summary
  • Members
Edit on GitHub
  1. API Docs
  2. Offers

OffersApi

PreviousOffersNextOfferDto

Last updated 2 years ago

Summary

Members
Descriptions

This function will make a GET request to the /offers endpoint and return the response as a OffersDto object.

It takes a OffersUriParameterBuilder object as a parameter, builds a HttpRequestMessage object, sends it to the API, and returns a OffersDto object.

It builds an HTTP GET request to the OfferUri endpoint, sends the request to the API, and returns the response as an OfferDto object.

This function returns a list of logs for a given offer.

This function returns a list of logs for a specific offer.

It returns a new Uri object with the value of the _requestUriBase field, a forward slash, and the word "offers".

It takes a OffersUriParameterBuilder object and returns a Uri object.

It returns a URI for the offer with the given ID.

It returns a URI for the offer logs endpoint.

It takes an offerId and an OffersUriParameterBuilder and returns a Uri.

Members

public ()

This function will make a GET request to the /offers endpoint and return the response as a OffersDto object.

Returns

A list of offers

It takes a OffersUriParameterBuilder object as a parameter, builds a HttpRequestMessage object, sends it to the API, and returns a OffersDto object.

Parameters

  • OffersUriParameterBuilder This is a class that contains all the parameters that can be passed to the API.

Returns

A list of offers.

It builds an HTTP GET request to the OfferUri endpoint, sends the request to the API, and returns the response as an OfferDto object.

Parameters

  • offerId The offer id of the offer you want to retrieve.

Returns

A single offer

This function returns a list of logs for a given offer.

Parameters

  • offerId The offer ID of the offer you want to get the logs for.

Returns

A list of logs for the offer.

This function returns a list of logs for a specific offer.

Parameters

  • offerId The offer id of the offer you want to get the logs for.

  • OffersUriParameterBuilder This is a class that contains all the parameters that can be passed to the API.

Returns

A list of logs for the offer.

It returns a new Uri object with the value of the _requestUriBase field, a forward slash, and the word "offers".

It takes a OffersUriParameterBuilder object and returns a Uri object.

Parameters

  • OffersUriParameterBuilder This is a class that builds the query string parameters for the offers endpoint.

It returns a URI for the offer with the given ID.

Parameters

  • offerId The offer ID of the offer you want to get.

It returns a URI for the offer logs endpoint.

Parameters

  • offerId The ID of the offer you want to get logs for.

It takes an offerId and an OffersUriParameterBuilder and returns a Uri.

Parameters

  • offerId The offer ID of the offer you want to get the logs for.

  • OffersUriParameterBuilder This is a class that builds the query string parameters for the request.

public ()

public ( offersUriParameterBuilder)

public (string offerId)

public (string offerId)

public (string offerId, schemasUriParameterBuilder)

private readonly string

private Uri ()

private Uri ( offersUriParameterBuilder)

private Uri (string offerId)

private Uri (string offerId)

private Uri (string offerId, offersUriParameterBuilder)

public ( offersUriParameterBuilder)

public (string offerId)

public (string offerId)

public (string offerId, schemasUriParameterBuilder)

private readonly string

private Uri ()

private Uri ( offersUriParameterBuilder)

private Uri (string offerId)

private Uri (string offerId)

private Uri (string offerId, offersUriParameterBuilder)

OffersDto
Offers
OffersDto
Offers
OffersUriParameterBuilder
OfferDto
Offer
LogsDto
OfferLogs
LogsDto
OfferLogs
OffersUriParameterBuilder
_requestUriBase
OffersUri
OffersUri
OffersUriParameterBuilder
OfferUri
OfferLogsUri
OfferLogsUri
OffersUriParameterBuilder
OffersDto
Offers
OffersDto
Offers
OffersUriParameterBuilder
OfferDto
Offer
LogsDto
OfferLogs
LogsDto
OfferLogs
OffersUriParameterBuilder
_requestUriBase
OffersUri
OffersUri
OffersUriParameterBuilder
OfferUri
OfferLogsUri
OfferLogsUri
OffersUriParameterBuilder