Get device code
GET
/v2/devices/codes/{id}
Retrieves DeviceCode with the associated ID.
Permissions
DEVICE_CREDENTIAL_MANAGEMENT
Try in API Explorer
Name | Description |
---|---|
id
Required
|
The unique identifier for the device code. |
Response Fields
Name | Description |
---|---|
errors
|
Any errors that occurred during the request. |
device_
|
The queried DeviceCode. |
Examples
GET
/v2/devices/codes/{id}
cURL
- cURL
- Ruby
- Python
- C#
- Java
- PHP
- Node.js
curl https://connect.squareup.com/v2/devices/codes/B3Z6NAMYQSMTM \
-H 'Square-Version: 2022-07-20' \
-H 'Authorization: Bearer ACCESS_TOKEN' \
-H 'Content-Type: application/json'
Response JSON
{
"device_code": {
"id": "B3Z6NAMYQSMTM",
"name": "Counter 1",
"code": "EBCARJ",
"product_type": "TERMINAL_API",
"location_id": "B5E4484SHHNYH",
"created_at": "2020-02-06T18:44:33.000Z",
"pair_by": "2020-02-06T18:49:33.000Z",
"status": "PAIRED",
"device_id": "907CS13101300122",
"status_changed_at": "2020-02-06T18:47:28.000Z"
}
}