Appearance
Reconnect Instagram
POST/public/account/instagram/connect/{accountId}Reauthorize a previously connected Instagram account, typically when the session has expired. Provide a new authorization code from the Instagram callback.
Endpoint Details
- Authentication: Basic Auth (
Authorization: Basic Base64(AccessKey:SecretKey)) - Access Tier: Gold+
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
accountId | string | Yes | The unique ID of the account to reconnect. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
code | string | Yes | Authorization code received from the OAuth redirect. |
Example Request
bash
curl -X POST "https://api.repliz.com/public/account/instagram/connect/680affa5ce12f2f72916f67e" \
-H "Authorization: Basic $(echo -n 'YOUR_ACCESS_KEY:YOUR_SECRET_KEY' | base64)" \
-H "Content-Type: application/json" \
-d '{}'javascript
import axios from 'axios';
const accountId = '680affa5ce12f2f72916f67e';
const response = await axios.post(`https://api.repliz.com/public/account/instagram/connect/${accountId}`, {}, {
auth: {
username: 'YOUR_ACCESS_KEY',
password: 'YOUR_SECRET_KEY'
}
});
console.log(response.data);javascript
const credentials = btoa('YOUR_ACCESS_KEY:YOUR_SECRET_KEY');
const accountId = '680affa5ce12f2f72916f67e';
const response = await fetch(`https://api.repliz.com/public/account/instagram/connect/${accountId}`, {
method: 'POST',
headers: {
'Authorization': `Basic ${credentials}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({})
});
const data = await response.json();
console.log(data);Response
json
// No content returned on successjson
{
"code": 400,
"message": "incorrect generatedId to reconnect"
}json
{
"code": 404,
"message": "account not found"
}json
{
"code": 401,
"message": "unauthorized"
}