Pragma API (1)
Download OpenAPI specification:Download
Pragma provides a REST API exposing a set resources from our compatible POS solutions. This API is designed to be used by third-party applications from partners.
Get server health
Get the health of the server and some useful information.
Authorizations:
Responses
Response Schema: application/json
status required | string Status of the server |
uptime required | string Uptime of the server |
docURL required | string <uri> URL of the API documentation |
apiVersions required | string List of API versions |
Response samples
- 200
{- "status": "OK",
- "uptime": "1 hour 2 minutes 3 seconds",
- "apiVersions": "1",
}
Get list of reports V1
Get a list of reports ordered by created date from a location depending on the page parameters provided.
Authorizations:
query Parameters
index | integer >= 0 Default: 0 Index of the page query parameter |
size | integer [ 1 .. 100 ] Default: 10 Number of record on a page query parameter (capped to |
since | string^[0-9]{4}-(((0[13578]|(10|12))-(0[1-9]|[1-2][... Start date for date range (first day included). Accepts a date in the format ISO 8601 : YYYY-MM-DD |
until | string^[0-9]{4}-(((0[13578]|(10|12))-(0[1-9]|[1-2][... End date for date range (last day included). Accepts a date in the format ISO 8601 : YYYY-MM-DD |
Responses
Response Schema: application/json
required | Array of objects Example: "[object Object]" |
required | object Metadata for list of elements |
object Links for pagination | |
nextPageToken | string |
Response samples
- 200
{- "data": [
- {
- "id": "9f3ffd49-7148-469d-ae3e-b34f84e16d33",
- "createdAt": { },
- "updatedAt": { },
- "locationId": "671bd3b3-c942-4989-95ba-76776a6b6cb7",
- "startedAt": { },
- "finalizedAt": { },
- "deviceName": "TestBox",
- "deviceIdentifier": null,
- "reportNumber": 1,
- "guestsNumber": 146,
- "totalSales": 1000,
- "reportHeaderInfo": {
- "headerAddress": "1 rue de la peace man",
- "headerCity": "Paris",
- "headerCountry": "France",
- "headerName": "TestBox",
- "headerPhone": "0123456789",
- "headerNaf": "1234Z",
- "headerSiret": "12345678912345",
- "headerText": "TestBox",
- "headerTva": "FR123456789",
- "headerZip": "75001"
}, - "reportProducts": [
- {
- "productName": "Porto rouge",
- "productSales": 1000,
- "category": "Aperitifs",
- "subCategory": "Aperitifs",
- "productQuantity": 2,
- "productCatalogId": "57584b5e-fdf4-49a8-b551-bb9a10ec258a"
}
], - "reportClerksShift": [
- {
- "name": "Boss",
- "id": "6a4b7edf-bfdf-4bb2-9b00-a48e55580aa7",
- "clockInDate": "2024-03-13T14:25:00Z",
- "clockOutDate": "2024-03-13T15:10:00Z"
}
], - "clerkName": null,
- "clerkId": null,
- "reportDiscounts": [
- {
- "discountName": "Sad Hour",
- "discountValue": 420,
- "discountCatalogId": "57584b5e-fdf4-49a8-b551-bb9a10ec258a"
}
], - "reportTaxes": [
- {
- "taxName": "TVA 20",
- "taxRate": 2000,
- "taxAmount": 167,
- "taxableAmount": 833
}
], - "reportPayments": [
- {
- "paymentName": "Credit Card",
- "paymentAmount": 1000
}
], - "initialCashBalance": 3000,
- "finalCashBalance": 11000,
- "reportEntries": [
- {
- "entryName": "cash fund",
- "entryAmount": 200,
- "entryType": "cash"
}, - {
- "entryName": "buy pain",
- "entryAmount": -200,
- "entryType": "cash"
}, - {
- "entryName": "Bank deposit",
- "entryAmount": -2000,
- "entryType": ""
}, - {
- "entryName": "jean charles",
- "entryAmount": 10000,
- "entryType": "credit card"
}
], - "orders": [
- "5a1b5429-91b2-4c9f-928c-7c2ec929e10d",
- "a32adb2b-45c3-46f5-b5e5-cfc94c703019",
- "ea154f47-a346-4b3e-99c8-b9d1d342dc02"
]
}
], - "meta": {
- "pageSize": 1,
- "totalCount": 1,
- "totalPage": 1,
- "currentPageIndex": 1
}
}
Get a report V1
Get a report based on the id provided.
Authorizations:
path Parameters
id required | string <uuid> Report id path parameter |
Responses
Response Schema: application/json
id required | string <uuid> Unique identifier of the report |
createdAt required | string <date-time> Date when the report was first recorded by the server |
updatedAt required | string <date-time> Date when the report was last updated |
locationId required | string <uuid> Unique identifier of the seller location that this order is associated with |
startedAt required | string <date-time> Start date of the report. This date is generated by the customer's device. As such, we cannot guarantee its consistency. |
finalizedAt required | string <date-time> End date of the report. This date is generated by the customer's device. As such, we cannot guarantee its consistency. |
deviceName required | string Name of the customer's device |
deviceIdentifier required | string or null Unique identifier of the POS that opened the report session. |
reportNumber required | integer >= 1 The report number |
guestsNumber required | integer >= 0 Number of guests |
totalSales required | number Total report sales (tax included). This amount does not include transferred orders (see also Order Transferred) |
required | object Header info of the location |
required | Array of objects List of aggregated sales data for each product |
required | Array of objects List of shift data for each clerk |
clerkName required | string or null Name of the clerk who closed the till session |
clerkId required | string or null <uuid> Unique identifier of the clerk who closed the till session |
required | Array of objects List of discounts |
required | Array of objects List of taxes |
required | Array of objects List of payments |
required | Array of objects List of accounting entries |
initialCashBalance required | integer or null >= 0 Initial cash fund when the till session was opened. |
finalCashBalance required | integer or null >= 0 Final cash fund once the till session was closed. |
orders required | Array of strings List of unique identifiers of orders |
Response samples
- 200
{- "id": "9f3ffd49-7148-469d-ae3e-b34f84e16d33",
- "createdAt": { },
- "updatedAt": { },
- "locationId": "671bd3b3-c942-4989-95ba-76776a6b6cb7",
- "startedAt": { },
- "finalizedAt": { },
- "deviceName": "TestBox",
- "deviceIdentifier": null,
- "reportNumber": 1,
- "guestsNumber": 146,
- "totalSales": 1000,
- "reportHeaderInfo": {
- "headerAddress": "1 rue de la peace man",
- "headerCity": "Paris",
- "headerCountry": "France",
- "headerName": "TestBox",
- "headerPhone": "0123456789",
- "headerNaf": "1234Z",
- "headerSiret": "12345678912345",
- "headerText": "TestBox",
- "headerTva": "FR123456789",
- "headerZip": "75001"
}, - "reportProducts": [
- {
- "productName": "Porto rouge",
- "productSales": 1000,
- "category": "Aperitifs",
- "subCategory": "Aperitifs",
- "productQuantity": 2,
- "productCatalogId": "57584b5e-fdf4-49a8-b551-bb9a10ec258a"
}
], - "reportClerksShift": [
- {
- "name": "Boss",
- "id": "6a4b7edf-bfdf-4bb2-9b00-a48e55580aa7",
- "clockInDate": "2024-03-13T14:25:00Z",
- "clockOutDate": "2024-03-13T15:10:00Z"
}
], - "clerkName": null,
- "clerkId": null,
- "reportDiscounts": [
- {
- "discountName": "Sad Hour",
- "discountValue": 420,
- "discountCatalogId": "57584b5e-fdf4-49a8-b551-bb9a10ec258a"
}
], - "reportTaxes": [
- {
- "taxName": "TVA 20",
- "taxRate": 2000,
- "taxAmount": 167,
- "taxableAmount": 833
}
], - "reportPayments": [
- {
- "paymentName": "Credit Card",
- "paymentAmount": 1000
}
], - "initialCashBalance": 3000,
- "finalCashBalance": 11000,
- "reportEntries": [
- {
- "entryName": "cash fund",
- "entryAmount": 200,
- "entryType": "cash"
}, - {
- "entryName": "buy pain",
- "entryAmount": -200,
- "entryType": "cash"
}, - {
- "entryName": "Bank deposit",
- "entryAmount": -2000,
- "entryType": ""
}, - {
- "entryName": "jean charles",
- "entryAmount": 10000,
- "entryType": "credit card"
}
], - "orders": [
- "5a1b5429-91b2-4c9f-928c-7c2ec929e10d",
- "a32adb2b-45c3-46f5-b5e5-cfc94c703019",
- "ea154f47-a346-4b3e-99c8-b9d1d342dc02"
]
}
Get catalog products
Get all catalog products configured on the POS.
Authorizations:
Responses
Response Schema: application/json
id required | string <uuid> Product ID in the catalog |
name required | string Product name |
category required | string Product category |
categoryId required | string <uuid> Product category ID in the catalog |
Array of objects Default: [] List of subcategories - keep in mind that a product can be in multiple subcategories. If this array is empty, the product is not in any subcategory and has been archived. | |
required | Array of objects List of price and tax rate for each type of price (we also provide the type name) |
sku | string or null Product stock keeping unit. More info here |
Response samples
- 200
[- {
- "id": "327836eb-aed2-4406-a17d-37712d0cea75",
- "name": "Marsannay",
- "category": "Cave",
- "categoryId": "5465b370-fd9d-4e22-ba93-7bfbf7b9eff7",
- "subCategories": [
- {
- "name": "Vin rosé",
- "id": "0cbddb3e-b883-46aa-9d64-ca34fea0d44e"
}
], - "priceList": [
- {
- "priceTypeId": 0,
- "priceTypeName": "Normal",
- "unitPrice": 1400,
- "taxRate": 2000
}
]
}, - {
- "id": "1fa4b9d8-5030-42d6-9b5d-4bd672fef607",
- "name": "Kasteel rouge",
- "category": "Aperitifs",
- "categoryId": "18b6666d-c780-416d-99df-b8b8a363dfa1",
- "subCategories": [
- {
- "name": "Bières bouteille",
- "id": "16f7cc2a-3f0d-4f63-b48b-3f41eb2daa6f"
}
], - "priceList": [
- {
- "priceTypeId": 0,
- "priceTypeName": "Normal",
- "unitPrice": 500,
- "taxRate": 2000
}
]
}, - {
- "id": "e39858ef-4072-41a5-96ca-454917942700",
- "name": "Salade chevre chaud",
- "category": "Entrees",
- "categoryId": "f285f25a-ef03-4bd2-b5fe-1eea5561bbf9",
- "subCategories": [
- {
- "name": "Salades",
- "id": "b18798a7-7527-4c5a-9b7e-f42d242d819e"
}
], - "priceList": [
- {
- "priceTypeId": 0,
- "priceTypeName": "Normal",
- "unitPrice": 800,
- "taxRate": 1000
}
]
}, - {
- "id": "291235b5-34f7-46ad-8175-821409254bfe",
- "name": "Pomerol",
- "category": "Cave",
- "categoryId": "5465b370-fd9d-4e22-ba93-7bfbf7b9eff7",
- "subCategories": [
- {
- "name": "Vin rouge",
- "id": "7a12f02f-158e-4359-9655-d516eb0ee572"
}
], - "priceList": [
- {
- "priceTypeId": 0,
- "priceTypeName": "Normal",
- "unitPrice": 2800,
- "taxRate": 2000
}
]
}
]
Get the catalog payments
Get catalog payments configured on the POS.
Authorizations:
Responses
Response Schema: application/json
id required | string <uuid> Payment method client id |
name required | string Payment method name |
enabled required | boolean Availability of the payment method |
Response samples
- 200
[- {
- "id": "fcbe2bb9-beac-4126-a4f3-292740397f97",
- "name": "Carte de crédit",
- "enabled": true
}, - {
- "id": "787195c3-e2e1-4a43-b4b5-23b31ab364ec",
- "name": "Resto Flash",
- "enabled": false
}, - {
- "id": "2528fdb4-7c79-42e9-955d-22310dcc39c7",
- "name": "iZettle",
- "enabled": false
}
]
Get the catalog taxes
Get catalog taxes list configured on the POS.
Authorizations:
Responses
Response Schema: application/json
id required | string <uuid> Tax client id |
name required | string Tax name |
percentage required | integer Tax rate |
Response samples
- 200
[- {
- "id": "59f651fc-4f27-4a0a-98ba-e70d3e218e33",
- "name": "TVA 10",
- "percentage": 1000
}, - {
- "id": "2426d514-5e7c-4088-8c89-1489f05cc2de",
- "name": "TVA 20",
- "percentage": 2000
}, - {
- "id": "e377eecb-78e8-4d2f-9020-9f790388584a",
- "name": "TVA 5,5",
- "percentage": 550
}
]
Get the catalog modifiers
Get catalog modifiers list configured on the POS.
Authorizations:
Responses
Response Schema: application/json
id required | string <uuid> Modifier client id |
name required | string Modifier name |
required | Array of objects |
Response samples
- 200
[- {
- "id": "813f799b-4436-46f3-9c42-0ddf1d45900d",
- "name": "Cuisson",
- "options": [
- {
- "id": "3e7877ab-088e-4113-80c8-851aaecfa345",
- "name": "Rosé",
- "price": 0
}, - {
- "id": "4745e813-2f0b-4c79-915f-7919803e9a7b",
- "name": "À Point",
- "price": 0
}, - {
- "id": "4281153a-28a0-4237-a49c-23708ecb9fca",
- "name": "Bleu",
- "price": 0
}, - {
- "id": "eb344665-c30f-4a0e-b4e6-72221ae22795",
- "name": "Bien cuit",
- "price": 0
}, - {
- "id": "be6f1914-db81-45de-a392-e009e7342463",
- "name": "Saignant",
- "price": 0
}
]
}, - {
- "id": "b80a3d2d-2653-4271-98d7-ed48da49bd92",
- "name": "sirop kir",
- "options": [
- {
- "id": "3214fd90-2640-43a7-96a4-32d41fce7e14",
- "name": "cassis",
- "price": 0
}, - {
- "id": "e07b92a5-98b0-4b28-8f0b-6b59e5e54507",
- "name": "mure",
- "price": 0
}, - {
- "id": "00bd0114-a90d-4b5e-b323-f3c9b90e3706",
- "name": "peche",
- "price": 0
}
]
}
]
Get catalog's categories
Get the catalog category list configured on the POS.
Authorizations:
Responses
Response Schema: application/json
id required | string <uuid> The unique id of the category |
name required | string The name of the category |
index required | integer >= 0 The position of the category in the configuration |
Response samples
- 200
[- {
- "id": "5465b370-fd9d-4e22-ba93-7bfbf7b9eff7",
- "name": "Cave",
- "index": 0
}, - {
- "id": "18b6666d-c780-416d-99df-b8b8a363dfa1",
- "name": "Aperitifs",
- "index": 1
}
]
Get list of orders V1
Get a list of orders ordered by created date from a location depending on the page parameters provided.
Authorizations:
query Parameters
index | integer >= 0 Default: 0 Index of the page query parameter |
size | integer [ 1 .. 100 ] Default: 10 Number of record on a page query parameter (capped to |
since | string^[0-9]{4}-(((0[13578]|(10|12))-(0[1-9]|[1-2][... Start date for date range (first day included). Accepts a date in the format ISO 8601 : YYYY-MM-DD |
until | string^[0-9]{4}-(((0[13578]|(10|12))-(0[1-9]|[1-2][... End date for date range (last day included). Accepts a date in the format ISO 8601 : YYYY-MM-DD |
reportId | string <uuid> Report id query parameter |
Responses
Response Schema: application/json
required | Array of objects List of orders |
required | object Metadata for list of elements |
object Links for pagination | |
nextPageToken | string |
Response samples
- 200
{- "data": [
- {
- "id": "b3b4c5d6-e7f8-a9b0-c1d2-e3f4a5b6c7d8",
- "deviceId": "a2049f39-026a-4c54-a411-8a1d9271804b",
- "createdAt": { },
- "updatedAt": { },
- "locationId": "d6f5e4d3-c2b1-42a0-9c68-31a3b4d5e6f7",
- "reportId": "9cad608b-48cc-40ed-ae8b-032ec54a0472",
- "openedAt": { },
- "closedAt": { },
- "guests": 2,
- "orderPlace": "Terrasse",
- "orderNumber": "10",
- "operatorId": "70c3d28a-1b3a-43f0-aa4f-5b78a932f7dc",
- "operatorName": "Jane Doe",
- "total": 20,
- "totalTax": 1.82,
- "totalDiscount": 5,
- "customerId": "-Mkw59Hj9X7iGwz0Y866",
- "isCanceled": false,
- "isTransferred": false,
- "transferReason": null,
- "cancelReason": null,
- "items": [
- {
- "description": "Coca Cola",
- "quantity": 5,
- "weight": null,
- "unitPrice": 4,
- "total": 20,
- "category": "Eaux & sodas",
- "subCategory": "Sodas",
- "isCanceled": false,
- "cancelReason": null,
- "tier": "Normal",
- "isTransferred": false,
- "transferReason": null,
- "discountsApplied": [ ],
- "modifiers": [
- {
- "modifierGroupId": "a79a00cd-ed01-4a59-9025-d3e738316bd5",
- "modifierId": "a3b4c5d6-e7f8-a9b0-c1d2-e3f4a5b6c7d8",
- "name": "Supplément glaçons"
}
], - "stockImpactIndicator": true,
- "tax": {
- "taxName": "TVA 10%",
- "taxRate": 0.1,
- "taxAmount": 1.82,
- "taxCatalogId": "a954f58c-8864-45cc-ada2-d7cc8476aade"
}, - "itemCatalogId": "d7af5760-3e89-4a3d-a82a-ca802dadd5f7"
}, - {
- "description": "Café Liegeois",
- "quantity": 1,
- "weight": null,
- "unitPrice": 5,
- "total": 0,
- "category": "Boissons chaudes",
- "subCategory": "Boissons chaudes",
- "isCanceled": false,
- "tier": "Normal",
- "cancelReason": null,
- "isTransferred": false,
- "transferReason": null,
- "discountsApplied": [
- {
- "discountName": "Offert client",
- "discountValue": 5,
- "discountCatalogId": "c8352cae-7dff-4ba6-9559-2d4b11be1403"
}
], - "tax": {
- "taxName": "TVA 10%",
- "taxAmount": 0,
- "taxRate": 0.1,
- "taxCatalogId": "a954f58c-8864-45cc-ada2-d7cc8476aade"
}, - "itemCatalogId": "d7af5760-3e89-4a3d-a82a-ca802dadd5f7"
}
], - "menus": [ ],
- "payments": [
- {
- "paymentAmount": 20,
- "paymentName": "Espèces",
- "paymentCatalogId": "758941b8-351b-4506-bc7e-9b488c897c44"
}
], - "tips": null,
- "channel": "Hubrise",
- "serviceType": "delivery",
- "isTraining": false,
- "source": "unknown",
- "externalLocationId": null,
- "externalOrderId": null
}
], - "meta": {
- "totalCount": 1,
- "currentPageIndex": 0,
- "totalPage": 1,
- "pageSize": 10
}, - "links": {
- "prev": null
}
}
Get an order V1
Get an order based on the id provided.
Authorizations:
path Parameters
id required | string <uuid> Order id path parameter |
Responses
Response Schema: application/json
id required | string <uuid> Order unique identifier |
createdAt required | string <date-time> Date when the order was first recorded by the server |
updatedAt required | string <date-time> Date when the order was last updated |
customerId required | string or null Unique identifier of a customer. The value is set to |
deviceId required | string or null Unique identifier of the device |
deviceName | string or null Name of the device |
locationId required | string <uuid> Unique identifier of the seller location that this order is associated with |
reportId required | string <uuid> Unique identifier of the generated report that this order is associated with |
openedAt required | string <date-time> Date when the order was opened |
closedAt required | string <date-time> Date when the order was closed |
guests required | number >= 0 Number of guests |
orderPlace required | string Order selling place |
orderNumber required | string Order number |
operatorId required | string <uuid> Unique identifier of the operator |
operatorName required | string Operator name |
total required | number Total order amount (discounts and taxes included) |
totalTax required | number Total order tax amount |
totalDiscount required | number Total order discount amount |
required | Array of objects List of items |
required | Array of objects List of menus |
required | Array of objects List of payments |
required | Array of objects or null List of tips |
isCanceled required | boolean Order canceled state. An order cancelled after or before payment will not count in the total for the day (see also Order canceled) |
isTransferred required | boolean Order transferred state. An order can be transferred to a PMS for hotel (Property Management System app). A guest of a hotel-restaurant can request to transfer the order made from the restaurant to their room account (see also Order transferred) |
transferReason required | string or null Order transfer reason, related to the attribute |
cancelReason required | string or null Order cancellation reason, related to the attribute |
channel | string Default: "unknown" |
serviceType | string Default: "unknown" Enum: "takeout" "eatin" "delivery" "unknown" |
isTraining | boolean Default: false Order has been created in training mode |
source required | string Source where order was placed |
externalOrderId required | string or null Order identifier from external service |
externalLocationId required | string or null Location identifier from external service |
Response samples
- 200
{- "id": "b3b4c5d6-e7f8-a9b0-c1d2-e3f4a5b6c7d8",
- "deviceId": "a2049f39-026a-4c54-a411-8a1d9271804b",
- "createdAt": { },
- "updatedAt": { },
- "locationId": "d6f5e4d3-c2b1-42a0-9c68-31a3b4d5e6f7",
- "reportId": "9cad608b-48cc-40ed-ae8b-032ec54a0472",
- "openedAt": { },
- "closedAt": { },
- "guests": 2,
- "orderPlace": "Terrasse",
- "orderNumber": "10",
- "operatorId": "70c3d28a-1b3a-43f0-aa4f-5b78a932f7dc",
- "operatorName": "Jane Doe",
- "total": 20,
- "totalTax": 1.82,
- "totalDiscount": 5,
- "customerId": "-Mkw59Hj9X7iGwz0Y866",
- "isCanceled": false,
- "isTransferred": false,
- "transferReason": null,
- "cancelReason": null,
- "items": [
- {
- "description": "Coca Cola",
- "quantity": 5,
- "weight": null,
- "unitPrice": 4,
- "total": 20,
- "category": "Eaux & sodas",
- "subCategory": "Sodas",
- "isCanceled": false,
- "cancelReason": null,
- "tier": "Normal",
- "isTransferred": false,
- "transferReason": null,
- "discountsApplied": [ ],
- "modifiers": [
- {
- "modifierGroupId": "a79a00cd-ed01-4a59-9025-d3e738316bd5",
- "modifierId": "a3b4c5d6-e7f8-a9b0-c1d2-e3f4a5b6c7d8",
- "name": "Supplément glaçons"
}
], - "stockImpactIndicator": true,
- "tax": {
- "taxName": "TVA 10%",
- "taxRate": 0.1,
- "taxAmount": 1.82,
- "taxCatalogId": "a954f58c-8864-45cc-ada2-d7cc8476aade"
}, - "itemCatalogId": "d7af5760-3e89-4a3d-a82a-ca802dadd5f7"
}, - {
- "description": "Café Liegeois",
- "quantity": 1,
- "weight": null,
- "unitPrice": 5,
- "total": 0,
- "category": "Boissons chaudes",
- "subCategory": "Boissons chaudes",
- "isCanceled": false,
- "tier": "Normal",
- "cancelReason": null,
- "isTransferred": false,
- "transferReason": null,
- "discountsApplied": [
- {
- "discountName": "Offert client",
- "discountValue": 5,
- "discountCatalogId": "c8352cae-7dff-4ba6-9559-2d4b11be1403"
}
], - "tax": {
- "taxName": "TVA 10%",
- "taxAmount": 0,
- "taxRate": 0.1,
- "taxCatalogId": "a954f58c-8864-45cc-ada2-d7cc8476aade"
}, - "itemCatalogId": "d7af5760-3e89-4a3d-a82a-ca802dadd5f7"
}
], - "menus": [ ],
- "payments": [
- {
- "paymentAmount": 20,
- "paymentName": "Espèces",
- "paymentCatalogId": "758941b8-351b-4506-bc7e-9b488c897c44"
}
], - "tips": null,
- "channel": "Hubrise",
- "serviceType": "delivery",
- "isTraining": false,
- "source": "unknown",
- "externalLocationId": null,
- "externalOrderId": null
}
Get location info
GET the location info related to your API key. You can opt-in to get the device list as well
Authorizations:
query Parameters
devices | boolean Value: true Pass true if you want the device list of the location. |
Responses
Response Schema: application/json
id required | string <uuid> Unique identifier of the location |
address required | string or null Address of the location |
siret required | string or null SIRET code of the location |
city required | string or null City of the location |
country required | string or null Country of the location |
naf required | string or null NAF code of the location |
name required | string or null Name of the location |
phone required | string or null Phone number of the location |
text required | string or null Text of the location |
tva required | string or null VAT number of the location |
url required | string or null URL of the location |
zip required | string or null Zip code of the location |
Array of objects List of POS devices |
Response samples
- 200
{- "id": "d6f5e4d3-c2b1-42a0-9c68-31a3b4d5e6f7",
- "name": "Monzù Grands Hommes",
- "address": "Centre commercial des, 12 Pl. des Grands Hommes",
- "siret": "43779154400012",
- "city": "Bordeaux",
- "country": "France",
- "naf": "5610A",
- "phone": "05 56 48 55 24",
- "text": "",
- "tva": "FR76437791544",
- "zip": "33000",
- "deviceList": [
- {
- "id": "76f1f462-5e16-484b-b348-83d9ed5dc419",
- "name": "Caisse Principal",
- "model": "iPad Pro"
}
]
}