Skip to main content

Get spots for asset

GET 

/api/inspect/v1/spot

Fetch the list of spots in an asset for the given asset ID.

Request

Query Parameters

    assetID stringrequired

    Asset ID for which spots are to be fetched.

    page int64

    Page number for pagination.

    size int64

    Number of spots per page.

    sort int64

    Sort order for spots.

Responses

200 response

Schema

    data

    object[]

    List of spots

  • Array [

  • id uuid

    The unique identifier of the spot

    spotTemplateID uuid

    The unique identifier of the spot template used to create the spot.

    updatedAt int64

    The timestamp when the spot was last updated in milliseconds

    archived boolean

    A flag indicating whether the spot is archived.

    assetID uuid

    The unique identifier of the asset to which the spot belongs.

    createdAt int64

    The timestamp when the spot was created in milliseconds

    createdBy int64

    The ID of the user who created the spot

    fields

    object

    A map of spot fields and their values. The keys are the IDs of the spot fields, and the values are the values of the spot fields.

    property name* any

    A map of spot fields and their values. The keys are the IDs of the spot fields, and the values are the values of the spot fields.

    thumbnailURL uri

    The URL of the thumbnail image representing the spot.

    ticketID int64

    The spot number

    updatedBy int64

    The ID of the user who last updated the spot

  • ]

Loading...