Skip to content

Commit

Permalink
add missing links
Browse files Browse the repository at this point in the history
  • Loading branch information
Jens Kürten committed Mar 5, 2024
1 parent 566ff73 commit 6ea3087
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def send_doc_to_erp(metadata: MetaData, event: DocumentReleaseEvent, service: Se
```

While you don't have to use type annotations, it is highly recommended because it enables autocomplete in your IDE and helps you spot mistakes faster.
For our example we only need the DocumentReleaseEvent. It contains a list of documents that were released. Typically this will only be a single document, however it is best practices to iterate over all of the documents.
For our example we only need the [DocumentReleaseEvent](reference/events.md/#documentreleaseevent). It contains a list of documents that were released. Typically this will only be a single document, however it is best practices to iterate over all of the documents.

``` python title="mymodule.py"
import requests
Expand All @@ -61,8 +61,8 @@ def send_doc_to_erp(metadata: MetaData, event: DocumentReleaseEvent, service: Se

```

Here we send a payload, containing a few attributes from the released document, to https://example.com. This is just for illustration purposes!
Please refer to the documentation of your ERP system on how the request needs to be formated and which endpoint and credentials to use.
Here we send a payload, containing a few attributes from the released document, to [example.com](https://example.com). This is just for illustration purposes!
Please refer to the documentation of your ERP system on how the request needs to be formatted and which endpoint and credentials to use.

### Register the Function

Expand Down

0 comments on commit 6ea3087

Please sign in to comment.