cURL
curl --request GET \ --url https://api.gologin.com/proxy-devices/{deviceId}/sms \ --header 'Authorization: Bearer <token>'
{ "sms": [ { "id": "<string>", "message": "<string>", "deviceId": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "phoneNumber": "<string>", "receiveDate": "2023-11-07T05:31:56Z", "deliveredAt": "2023-11-07T05:31:56Z" } ], "pagination": { "page": 123, "limit": 123, "total": 123, "totalPages": 123, "hasNext": true, "hasPrev": true } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Page number (1-based)
x >= 1
1
Number of items per page
1 <= x <= 100
10
List of SMS messages retrieved successfully
List of SMS messages
Show child attributes
Pagination metadata
Was this page helpful?