GETADITUS/Ticket purchase & registration/User/Orders/Get exhibitor recommendations

Get exhibitor recommendations

GET{{API_BASE_URL}}/shop/v1/user/:userId/orders/:orderId/exhibitor-recommendations?amount=3

This endpoint retrieves exhibitor recommendations for a specific order associated with a user. It allows you to get tailored suggestions based on the order details.

Request

  • userId (path) : The unique identifier of the user whose order recommendations are being requested.

  • orderId (path) : The identifier of the order for which recommendations are sought.

  • amount (query) : The number of recommendations to return (e.g., amount=3). If the amount is not provided, the default value 10 will be used.

Response

The response will contain a JSON object structured as follows:

  • data (object) : Contains the recommendations data.

    • recommendations (array) : A list of recommended exhibitors, where each recommendation includes:

      • id (string) : The unique identifier of the recommendation.

      • title (string) : The title of the recommendation.

      • description (string) : A brief description of the recommendation.

      • link (string) : A URL link to more information about the recommendation.

      • logoLink (string) : A URL link to the logo associated with the recommendation.

      • badges (array) : A list of badges associated with the recommendation, where each badge includes:

        • color (string|null) : The color of the badge.

        • id (string) : The unique identifier of the badge.

        • text (string) : The text displayed on the badge.

      • categories (array) : A list of categories associated with the recommendation, where each category includes:

        • id (string) : The unique identifier of the category.

        • text (string) : The text description of the category.

Additional Notes

  • Ensure that the userId and orderId are valid to receive accurate recommendations.

  • The amount parameter can be adjusted to control the number of recommendations returned. If the amount is not provided, the default value 10 will be used.

Request

  • userId (path) : The unique identifier of the user whose order is being queried.

  • orderId (path) : The identifier of the specific order for which recommendations are requested.

  • amount (query) : The number of exhibitor recommendations to retrieve (default is 10).

Response

  • data (object): Contains the recommendations data.

    • recommendations (array): A list of recommended exhibitors based on the order.

      • id (string): The unique identifier of the recommendation.

      • title (string): The title of the recommended exhibitor.

      • description (string): A brief description of the recommended exhibitor.

      • link (string): A URL link to the recommended exhibitor's page.

      • logoLink (string): A URL link to the logo of the recommended exhibitor.

      • badges (array): A list of badges associated with the recommendation.

        • color (string|null): The color of the badge.

        • id (string): The unique identifier of the badge.

        • text (string): The text displayed on the badge.

      • categories (array): A list of categories associated with the recommendation.

        • id (string): The unique identifier of the category.

        • text (string): The name of the category.

Note: The response structure may vary, and additional fields may be included based on the specific recommendations provided.

Authentication#auth

This endpoint does not require authentication.

Headers#headers

Accept-Language{{LANGUAGE}}

Query parameters#query

amount3optional

Responses#responses

200OKGet exhibitor recommendations