Fix documentation typo

This commit is contained in:
Enrique Barcelli 2023-09-17 17:56:37 +08:00
parent f72006520f
commit 3eb93d183f
Signed by: kikobar
GPG key ID: 006C13A68E25D3B7

View file

@ -1,6 +1,6 @@
**Objective**
This Python scripts allows to place, track and delete delivery requests using the uParcel API.
These Python scripts allow to place, track and delete delivery requests using the uParcel API.
**Requirements**
@ -26,4 +26,4 @@ This Python scripts allows to place, track and delete delivery requests using th
* You can pass a WEBHOOK URL to the uParcel API where the API can later post any updates to the delivery request. These updates are posted in JSON format. You will need a database if you are interested in logging these updates. We accomplished that by posting those updates to a MongoDB database.
* The uParcel API posts via the WEBHOOK URL only the events made in their portal, but not the events made via the API, such as the creation or cancellation of the delivery requests by our own scripts, so our scripts will need the ability to post those events to the database too. That is why we added the `push.py` script, which is invoked to do exactly that.
* The uParcel API posts via the WEBHOOK URL only the events made in their portal, but not the events made via the API, such as the creation or cancellation of the delivery requests by our own scripts, so our scripts will need the ability to post those events to the database too. That is what the `push.py` script does.