You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Download the swagger file from the HelloAsso API documentation. It use an old swagger 2 version. You need to convert it to OpenAPI 3.0.0 version. You can use the online tool [Swagger Editor](https://editor.swagger.io/).
from HelloAssoAPIWrapper import HelloAssoAPIWrapper
9
13
```
10
14
11
15
### Notification result webhooks
12
16
13
17
You should configure a webhook to receive the notification results.
14
18
HelloAsso will make a POST request to the URL you provided with a JSON payload corresponding to a `NotificationResultContent` object.
19
+
20
+
## HelloAsso sandbox
21
+
22
+
HelloAsso provide a sandbox: api.helloasso-sandbox.com
23
+
24
+
# Development
25
+
26
+
Models when first generated using HelloAsso swagger documentation, and then adapted to include additional models, use stricter types and add documentation
27
+
28
+
## Add new methods
29
+
30
+
todo
31
+
32
+
## Models auto-generation
33
+
34
+
Download the swagger file from the HelloAsso API documentation. It use an old swagger 2 version. You need to convert it to OpenAPI 3.0.0 version. You can use the online tool [Swagger Editor](https://editor.swagger.io/).
35
+
36
+
Then you can use the [datamodel-codegen](https://docs.pydantic.dev/latest/integrations/datamodel_code_generator/) tool to generate the models:
0 commit comments