Get a specific post
get/v1/social/posts/{id}
Get a specific post
Request
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| id* | path | string | No description |
Responses
200No description
- Schema
Schema Structure
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"data": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"content": {
"type": "string"
},
"platforms": {
"type": "array",
"items": {}
},
"platform_specific_content": {
"type": [
"array",
"null"
],
"items": {}
},
"status": {
"type": "string"
},
"scheduled_for": {
"type": "string"
},
"published_at": {
"type": "string"
},
"media_urls": {
"type": "string"
},
"settings": {
"type": "string"
},
"link": {
"type": [
"string",
"null"
]
},
"first_comment": {
"type": "integer"
},
"first_comment_text": {
"type": [
"string",
"null"
]
},
"published_count": {
"type": "integer"
},
"failed_count": {
"type": "integer"
},
"credits_used": {
"type": "string"
},
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"platform": {
"type": "string"
},
"status": {
"type": "string"
},
"platform_post_id": {
"type": "string"
},
"platform_url": {
"type": "string"
},
"error_message": {
"type": "string"
},
"likes": {
"type": "string"
},
"comments": {
"type": "string"
},
"shares": {
"type": "string"
},
"views": {
"type": "string"
},
"engagement_rate": {
"type": "string"
},
"published_at": {
"type": "string"
}
},
"required": [
"platform",
"status",
"platform_post_id",
"platform_url",
"error_message",
"likes",
"comments",
"shares",
"views",
"engagement_rate",
"published_at"
]
}
},
"created_at": {
"type": "string"
}
},
"required": [
"id",
"content",
"platforms",
"platform_specific_content",
"status",
"scheduled_for",
"published_at",
"media_urls",
"settings",
"link",
"first_comment",
"first_comment_text",
"published_count",
"failed_count",
"credits_used",
"results",
"created_at"
]
}
},
"required": [
"success",
"data"
]
}