---
title: "Poll - Confirmation (Deprecated)"
source_url: https://docs.rapyd.net/en/poll---confirmation--deprecated-.html
lang: en
---

# Poll - Confirmation (Deprecated)

**Deprecated - Do not use.** Poll a confirmation of a sale.

### Parameters

### Request Header Parameters

- - X-API-KEY
  - Unique access key provided by Rapyd for each partner.

### Request Body Parameters

- - uti
  - An id provided by the POS in a sale response. Used for message matching in a re-print.

  - deviceToken
  - The token of a PAX POS device.

### 202 Accepted Response

- - message
  - Accepted

### 401 Error Response

- - message
  - Unauthorized

### 500 Error Response

- - 500
  - Server Error

- /poll/confirmation

- Poll - Confirmation Accepted
- ```curl
  curl -X
  post https://CloudLinkApi/poll/confirmation
  -H 'X-API-KEY: your-access-key-here'
  -d '{
    "uti": "string",
    "deviceToken": "string"  
  }
  ' 
  ```
- ```json
  {
   "message":"accepted"
  }
  ```

- Poll - Confirmation Unauthorized
- ```curl
  curl -X
  post https://CloudLinkApi/poll/confirmation
  -H 'X-API-KEY: your-access-key-here'
  -d '{
    "uti": "string", 
    "deviceToken": "12345t" 
  }
  ' 
  ```
- ```json
  {
    "message": "Unauthorized"
  }    
  ```
