You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-27 22:18:36 +02:00
224 lines
6.3 KiB
Plaintext
Vendored
224 lines
6.3 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 1
|
|
description: Get chat history and other functions to work with GreenAPI in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
|
|
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, GreenAPI]
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# Get chat history
|
|
Retrieves the chat message history
|
|
|
|
|
|
|
|
`Function GetChatHistory(Val AccessParameters, Val ChatID, Val Count = 100) Export`
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|-|-|-|-|-|
|
|
| AccessParameters | --access | Structure Of KeyAndValue | ✔ | Access parameters. See FormAccessParameters |
|
|
| ChatID | --chat | String | ✔ | Chat identifier |
|
|
| Count | --count | Number | ✖ | Number of messages to receive |
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from Green API
|
|
|
|
<br/>
|
|
|
|
:::tip
|
|
Method at API documentation: [GetChatHistory](https://green-api.com/docs/api/journals/GetChatHistory/)
|
|
:::
|
|
<br/>
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
ApiUrl = "https://7105.api.greenapi.com";
|
|
MediaUrl = "https://7105.media.greenapi.com";
|
|
IdInstance = "71051...";
|
|
ApiTokenInstance = "425010d90e114aa6b78f0969e...";
|
|
|
|
ChatID = "120363410406221140@g.us";
|
|
|
|
AccessParameters = OPI_GreenAPI.FormAccessParameters(ApiUrl, MediaUrl, IdInstance, ApiTokenInstance);
|
|
Result = OPI_GreenAPI.GetChatHistory(AccessParameters, ChatID);
|
|
```
|
|
|
|
|
|
<Tabs>
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
```bash
|
|
# JSON data can also be passed as a path to a .json file
|
|
|
|
oint greenapi GetChatHistory \
|
|
--access "{'apiUrl':'***','mediaUrl':'https://7105.media.greenapi.com','idInstance':'7105187566','apiTokenInstance':'***'}" \
|
|
--chat "120363410406221140@g.us"
|
|
```
|
|
</TabItem>
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
```batch
|
|
:: JSON data can also be passed as a path to a .json file
|
|
|
|
oint greenapi GetChatHistory ^
|
|
--access "{'apiUrl':'***','mediaUrl':'https://7105.media.greenapi.com','idInstance':'7105187566','apiTokenInstance':'***'}" ^
|
|
--chat "120363410406221140@g.us"
|
|
```
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
|
|
```json title="Result"
|
|
[
|
|
{
|
|
"type": "outgoing",
|
|
"idMessage": "BAE5F0BC904F4998",
|
|
"timestamp": 1761560393,
|
|
"typeMessage": "extendedTextMessage",
|
|
"chatId": "120363410406221140@g.us",
|
|
"textMessage": "New message",
|
|
"extendedTextMessage": {
|
|
"text": "New message",
|
|
"description": "",
|
|
"title": "",
|
|
"previewType": "None",
|
|
"jpegThumbnail": "",
|
|
"forwardingScore": 1,
|
|
"isForwarded": true
|
|
},
|
|
"statusMessage": "sent",
|
|
"sendByApi": true,
|
|
"deletedMessageId": "",
|
|
"editedMessageId": "",
|
|
"isEdited": false,
|
|
"isDeleted": false
|
|
},
|
|
{
|
|
"type": "outgoing",
|
|
"idMessage": "BAE5EFF9FFBB851C",
|
|
"timestamp": 1761560392,
|
|
"typeMessage": "contactMessage",
|
|
"chatId": "120363410406221140@g.us",
|
|
"contact": {
|
|
"displayName": "Bicycle",
|
|
"vcard": "BEGIN:VCARD\nVERSION:3.0\nN:;;;\nFN:Bicycle\nORG:Bicycle\nTEL;type=CELL;type=VOICE;waid=79001234568:+79001234568\nEND:VCARD",
|
|
"forwardingScore": 0,
|
|
"isForwarded": false
|
|
},
|
|
"quotedMessage": {
|
|
"stanzaId": "BAE5F4CCAAE34098",
|
|
"participant": "1234567890@c.us",
|
|
"typeMessage": "contactMessage",
|
|
"contact": {
|
|
"displayName": "Artem Evpatoriysky Petrovich",
|
|
"vcard": "BEGIN:VCARD\nVERSION:3.0\nN:Petrovich;Artem;Evpatoriysky;\nFN:Artem Evpatoriysky Petrovich\nORG:Bicycle\nTEL;type=CELL;type=VOICE;waid=79001234568:+79001234568\nEND:VCARD",
|
|
"forwardingScore": 0,
|
|
"isForwarded": false
|
|
},
|
|
"deletedMessageId": "",
|
|
"editedMessageId": "",
|
|
"isEdited": false,
|
|
"isDeleted": false
|
|
},
|
|
"statusMessage": "sent",
|
|
"sendByApi": true,
|
|
"deletedMessageId": "",
|
|
"editedMessageId": "",
|
|
"isEdited": false,
|
|
"isDeleted": false
|
|
},
|
|
{
|
|
"type": "outgoing",
|
|
"idMessage": "BAE5F4CCAAE34098",
|
|
"timestamp": 1761560391,
|
|
"typeMessage": "contactMessage",
|
|
"chatId": "120363410406221140@g.us",
|
|
"contact": {
|
|
"displayName": "Artem Evpatoriysky Petrovich",
|
|
"vcard": "BEGIN:VCARD\nVERSION:3.0\nN:Petrovich;Artem;Evpatoriysky;\nFN:Artem Evpatoriysky Petrovich\nORG:Bicycle\nTEL;type=CELL;type=VOICE;waid=79001234568:+79001234568\nEND:VCARD",
|
|
"forwardingScore": 0,
|
|
"isForwarded": false
|
|
},
|
|
"statusMessage": "sent",
|
|
"sendByApi": true,
|
|
"deletedMessageId": "",
|
|
"editedMessageId": "",
|
|
"isEdited": false,
|
|
"isDeleted": false
|
|
},
|
|
{
|
|
"type": "outgoing",
|
|
"idMessage": "BAE5CF10CB48B9F3",
|
|
"timestamp": 1761560390,
|
|
"typeMessage": "locationMessage",
|
|
"chatId": "120363410406221140@g.us",
|
|
"location": {
|
|
"nameLocation": "",
|
|
"address": "",
|
|
"jpegThumbnail": "",
|
|
"latitude": 53.908522,
|
|
"longitude": 27.574821,
|
|
"forwardingScore": 0,
|
|
"isForwarded": false
|
|
},
|
|
"quotedMessage": {
|
|
"stanzaId": "BAE58EAA1E95D444",
|
|
"participant": "1234567890@c.us",
|
|
"typeMessage": "locationMessage",
|
|
"location": {
|
|
"nameLocation": "Victory Square, Minsk",
|
|
"address": "Victory sq.",
|
|
"jpegThumbnail": "",
|
|
"latitude": 53.908522,
|
|
"longitude": 27.574821,
|
|
"forwardingScore": 0,
|
|
"isForwarded": false
|
|
},
|
|
"deletedMessageId": "",
|
|
"editedMessageId": "",
|
|
"isEdited": false,
|
|
"isDeleted": false
|
|
},
|
|
"statusMessage": "sent",
|
|
"sendByApi": true,
|
|
"deletedMessageId": "",
|
|
"editedMessageId": "",
|
|
"isEdited": false,
|
|
"isDeleted": false
|
|
},
|
|
{
|
|
"type": "outgoing",
|
|
"idMessage": "BAE58EAA1E95D444",
|
|
"timestamp": 1761560389,
|
|
"typeMessage": "locationMessage",
|
|
"chatId": "120363410406221140@g.us",
|
|
"location": {
|
|
"nameLocation": "Victory Square, Minsk",
|
|
"address": "Victory sq.",
|
|
"jpegThumbnail": "",
|
|
"latitude": 53.908522,
|
|
"longitude": 27.574821,
|
|
"forwardingScore": 0,
|
|
"isForwarded": false
|
|
},
|
|
"statusMessage": "sent",
|
|
"sendByApi": true,
|
|
"deletedMessageId": "",
|
|
"editedMessageId": "",
|
|
"isEdited": false,
|
|
"isDeleted": false
|
|
},
|
|
{
|
|
"type": "outgoing",
|
|
"idMessage": "BAE5172A668D9D8D",
|
|
"timestamp": 1761560388,
|
|
"typeMessage": "pollMessage",
|
|
"chatId": "120363410406221140@g.us",
|
|
"pollMessageData": {
|
|
"name": "What's your favorite color?",
|
|
"options": [
|
|
{
|
|
"optionName": "Red"
|
|
...
|
|
```
|