Update Article
curl --request POST \
--url https://api.omnixapi.com/api/v1/twitter/article/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"auth_token": "YOUR_X_AUTH_TOKEN",
"article_id": "1900000000000000000",
"title": "<string>",
"content": "<string>",
"cover_media_id": "<string>",
"cover_image_url": "<string>",
"cover_image_base64": "<string>",
"proxy": "http://user:pass@host:8080"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
auth_token: 'YOUR_X_AUTH_TOKEN',
article_id: '1900000000000000000',
title: '<string>',
content: '<string>',
cover_media_id: '<string>',
cover_image_url: '<string>',
cover_image_base64: '<string>',
proxy: 'http://user:pass@host:8080'
})
};
fetch('https://api.omnixapi.com/api/v1/twitter/article/update', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.omnixapi.com/api/v1/twitter/article/update"
payload = {
"auth_token": "YOUR_X_AUTH_TOKEN",
"article_id": "1900000000000000000",
"title": "<string>",
"content": "<string>",
"cover_media_id": "<string>",
"cover_image_url": "<string>",
"cover_image_base64": "<string>",
"proxy": "http://user:pass@host:8080"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": true,
"data": {
"article_id": "<string>",
"updated": {
"title": true,
"content": true,
"cover_media_id": "<string>"
}
},
"error": null
}{
"status": false,
"data": null,
"error": "Missing required field: text"
}Articles
Update Article
Partial update of a draft or published article — only the passed fields change. Published articles are unpublished, edited, then republished automatically.
POST
/
article
/
update
Update Article
curl --request POST \
--url https://api.omnixapi.com/api/v1/twitter/article/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"auth_token": "YOUR_X_AUTH_TOKEN",
"article_id": "1900000000000000000",
"title": "<string>",
"content": "<string>",
"cover_media_id": "<string>",
"cover_image_url": "<string>",
"cover_image_base64": "<string>",
"proxy": "http://user:pass@host:8080"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
auth_token: 'YOUR_X_AUTH_TOKEN',
article_id: '1900000000000000000',
title: '<string>',
content: '<string>',
cover_media_id: '<string>',
cover_image_url: '<string>',
cover_image_base64: '<string>',
proxy: 'http://user:pass@host:8080'
})
};
fetch('https://api.omnixapi.com/api/v1/twitter/article/update', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.omnixapi.com/api/v1/twitter/article/update"
payload = {
"auth_token": "YOUR_X_AUTH_TOKEN",
"article_id": "1900000000000000000",
"title": "<string>",
"content": "<string>",
"cover_media_id": "<string>",
"cover_image_url": "<string>",
"cover_image_base64": "<string>",
"proxy": "http://user:pass@host:8080"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": true,
"data": {
"article_id": "<string>",
"updated": {
"title": true,
"content": true,
"cover_media_id": "<string>"
}
},
"error": null
}{
"status": false,
"data": null,
"error": "Missing required field: text"
}Authorizations
Your OmniX API key, e.g. omnix_live_.... Billed per call.
Body
application/json
The X account auth_token cookie the action runs as.
Example:
"YOUR_X_AUTH_TOKEN"
Example:
"1900000000000000000"
New markdown body.
Optional outbound proxy for this call (http:// or https://, optionally user:pass@host:port). The X request runs through it — useful for geo-routing or spreading calls across IPs. SOCKS proxies are not supported.
Example:
"http://user:pass@host:8080"