GET
Get Story
Get a single cached story by ID and author.
API endpoint
https://waclient.com/api/get_storyExample:
curl -X GET \
'https://waclient.com/api/get_story' \
-G \
--data-urlencode 'story_id=STORY123' \
--data-urlencode '[email protected]' \
--data-urlencode 'instance_id=6A4B02A1XXXX' \
--data-urlencode 'access_token=EMCUH3NQQK8YXXXX'Response
{
"status": "success",
"message": "Success",
"data": {
"story_id": "STORY123",
"author": "[email protected]",
"type": "text"
}
}| Parameter | Description |
|---|---|
| story_id / message_id | Story message ID |
| author / participant | Story author JID (Optional) |
| instance_id | Your instance ID |
| access_token | Your access token |