You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -118,7 +118,7 @@ viewer_id | The LinkedIn account ID to retrieve.
118
118
119
119
```shell
120
120
curl -X GET "https://api.lix-it.com/v1/account/linkedin/account?viewer_id=alfie-lambert"\
121
-
-H "Authorization: lixApiKey
121
+
-H "Authorization: lixApiKey"
122
122
```
123
123
124
124
```python
@@ -135,7 +135,20 @@ print(response.json())
135
135
> The above command returns JSON structured like this:
136
136
```json
137
137
{
138
-
"viewer_id": "alfie-lambert",
139
-
"numAvailableTokens": 10
138
+
"viewerId": "alfie-lambert",
139
+
"linkedInReady": true,
140
+
"salesNavigatorReady": false,
141
+
"warmup": {
142
+
"status": "warming",
143
+
"details": {
144
+
"active_days": 2,
145
+
"daily_limit": 100,
146
+
"hourly_limit": 40,
147
+
"max_daily_limit": 500,
148
+
"max_hourly_limit": 100
149
+
}
150
+
}
140
151
}
141
152
```
153
+
154
+
The `warmup` object is only present when the account warmup feature is enabled for the account. When warmup is complete the `status` field becomes `"completed"` and the `active_days` and limits reflect the final tier.
0 commit comments