Skip to main content

Get Point of Sales page

GET 

/business-structure/point-of-sales

Returns a paginated list of point-of-sale terminals for the company resolved from gateway context. Page size is fixed at 20 items per page.

Request

Query Parameters

    cursor string

    Possible values: <= 128 characters

    Pagination cursor (opaque token). Invalid or expired cursors yield 400 with code invalid_cursor.

    order_by string

    Possible values: [name_asc, name_desc, created_at_asc, created_at_desc]

    Default value: created_at_asc

    Sort order for returned point-of-sale terminals.

Responses

OK

Schema

    cursor stringnullable

    Token of the next page of the list. null when there is no next page.

    items

    object[]

    required

  • Array [

  • id uuidrequired

    Point-of-sale terminal identifier

    name stringrequired

    Possible values: >= 2 characters and <= 256 characters

    Display name of the terminal

    external_data

    object

    nullable

    External system reference data; null when the terminal has no external system link

    id stringrequired

    Possible values: >= 4 characters and <= 128 characters

    Unique identifier in the external system

    property name* anynullable

    External system reference data; null when the terminal has no external system link

    created_at date-timerequired

    Date and time when the terminal record was created

    updated_at date-timerequired

    Date and time when the terminal record was last updated

  • ]

Loading...