In the orders API, is there a field like pos_id to retrieve the specific IDs of POS systems? Does such a field even exist?

Since one business location (one location_id) can have multiple POS systems, and multiple different restaurant (businesses) can be in one “physical location”, in my use case, it would be handy to have something like this a pos_id.

Does something like this exist in the Square API (in Orders or elsewhere)? Any solutions?

Hi @shardul-shah welcome to the forums!

This actually lives in the Payments API currently. In the Payment object, there is a object called card_details, and inside of it there is an optional object called device_details which contains both the device_id and the device_name.

1 Like

Thanks again Stephen!