You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-23 22:05:15 +02:00
102 lines
3.1 KiB
Plaintext
Vendored
102 lines
3.1 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 1
|
|
description: Get notification 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 notification
|
|
Receives one notification from the queue
|
|
|
|
|
|
|
|
`Function GetNotification(Val AccessParameters, Val Timeout = 5) Export`
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|-|-|-|-|-|
|
|
| AccessParameters | --access | Structure Of KeyAndValue | ✔ | Access parameters. See FormAccessParameters |
|
|
| Timeout | --timeout | Number | ✖ | Timeout for waiting for new messages when the queue is empty |
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from Green API
|
|
|
|
<br/>
|
|
|
|
:::tip
|
|
Once the notification has been successfully accepted, you must remove it from the queue using the `DeleteNotificationFromQueue` method
|
|
|
|
Method at API documentation: [ReceiveNotification](https://green-api.com/docs/api/receiving/technology-http-api/ReceiveNotification/)
|
|
:::
|
|
<br/>
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
ApiUrl = "https://7105.api.greenapi.com";
|
|
MediaUrl = "https://7105.media.greenapi.com";
|
|
IdInstance = "71051...";
|
|
ApiTokenInstance = "425010d90e114aa6b78f0969e...";
|
|
|
|
AccessParameters = OPI_GreenAPI.FormAccessParameters(ApiUrl, MediaUrl, IdInstance, ApiTokenInstance);
|
|
Result = OPI_GreenAPI.GetNotification(AccessParameters);
|
|
```
|
|
|
|
|
|
<Tabs>
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
```bash
|
|
# JSON data can also be passed as a path to a .json file
|
|
|
|
oint greenapi GetNotification \
|
|
--access "{'apiUrl':'***','mediaUrl':'https://7105.media.greenapi.com','idInstance':'7105187566','apiTokenInstance':'***'}"
|
|
```
|
|
</TabItem>
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
```batch
|
|
:: JSON data can also be passed as a path to a .json file
|
|
|
|
oint greenapi GetNotification ^
|
|
--access "{'apiUrl':'***','mediaUrl':'https://7105.media.greenapi.com','idInstance':'7105187566','apiTokenInstance':'***'}"
|
|
```
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
|
|
```json title="Result"
|
|
{
|
|
"receiptId": 1,
|
|
"body": {
|
|
"typeWebhook": "outgoingAPIMessageReceived",
|
|
"instanceData": {
|
|
"idInstance": 7105187566,
|
|
"wid": "1234567890@c.us",
|
|
"typeInstance": "whatsapp"
|
|
},
|
|
"timestamp": 1760454766,
|
|
"idMessage": "BAE5BDDA56FAA465",
|
|
"senderData": {
|
|
"chatId": "120363410406221140@g.us",
|
|
"chatName": "Основная тестовая группа",
|
|
"sender": "1234567890@c.us",
|
|
"senderName": "",
|
|
"senderContactName": ""
|
|
},
|
|
"messageData": {
|
|
"typeMessage": "extendedTextMessage",
|
|
"extendedTextMessageData": {
|
|
"text": "Новое сообщение",
|
|
"description": "",
|
|
"title": "",
|
|
"previewType": "None",
|
|
"jpegThumbnail": "",
|
|
"forwardingScore": 0,
|
|
"isForwarded": false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
```
|