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
Copy file name to clipboardExpand all lines: docs/FormsApi.md
+76Lines changed: 76 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@ All URIs are relative to *https://api.helloasso.com/v5*
5
5
Method | HTTP request | Description
6
6
------------- | ------------- | -------------
7
7
[**organizations_organization_slug_forms_form_type_form_slug_state_put**](FormsApi.md#organizations_organization_slug_forms_form_type_form_slug_state_put) | **PUT** /organizations/{organizationSlug}/forms/{formType}/{formSlug}/state | Update a form state
8
+
[**organizations_organization_slug_forms_form_type_form_slug_stats_get**](FormsApi.md#organizations_organization_slug_forms_form_type_form_slug_stats_get) | **GET** /organizations/{organizationSlug}/forms/{formType}/{formSlug}/stats | Get Stats for the form
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
<br/><br/><b>Your token must have one of these roles : </b><br/>FormAdmin<br/>OrganizationAdmin<br/><br/>If you are an <b>association</b>, you can obtain these roles with your client.<br/>If you are a <b>partner</b>, you can obtain these roles by the authorize flow.<br/><br/><b>Your clientId must be allowed all of those privileges : </b> <br/> AccessPublicData<br/><br/>
92
+
93
+
### Example
94
+
95
+
96
+
```python
97
+
import helloasso_python
98
+
from helloasso_python.models.hello_asso_api_v5_common_models_enums_form_type import HelloAssoApiV5CommonModelsEnumsFormType
99
+
from helloasso_python.models.hello_asso_api_v5_common_models_forms_form_stats_model import HelloAssoApiV5CommonModelsFormsFormStatsModel
100
+
from helloasso_python.rest import ApiException
101
+
from pprint import pprint
102
+
103
+
# Defining the host is optional and defaults to https://api.helloasso.com/v5
104
+
# See configuration.py for a list of all supported configuration parameters.
105
+
configuration = helloasso_python.Configuration(
106
+
host="https://api.helloasso.com/v5"
107
+
)
108
+
109
+
110
+
# Enter a context with an instance of the API client
111
+
with helloasso_python.ApiClient(configuration) as api_client:
**401** | Unauthorized, you must add a valid JWT into Authorization Header with the format : `Bearer TOKEN` | - |
157
+
**403** | The JWT token hasn't the privileges or Roles for this action | - |
158
+
159
+
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: docs/HelloAssoApiV5CommonModelsDirectoryDirectoryOrganizationPublicModel.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
9
9
**tags** | **List[str]** | The public tags of the organization | [optional]
10
10
**linked_partners** | **List[str]** | Partners linked to this organization | [optional]
11
11
**is_authenticated** | **bool** | The organization is authenticated. Property returned only when asked by an organization admin. | [optional]
12
+
**display_coordinates** | **bool** | If the organization chose to display its coordinates. Property returned only when asked by an organization admin. | [optional]
12
13
**is_cash_in_compliant** | **bool** | If transaction can be init on the organization or not. Property returned only when asked by an organization admin. | [optional]
13
14
**banner** | **str** | The organization banner | [optional]
14
15
**fiscal_receipt_eligibility** | **bool** | The organism can issue fiscal receipts (type ok and has not deactivated it) Must configure it and be authenticated to become enabled | [optional]
Copy file name to clipboardExpand all lines: docs/HelloAssoApiV5CommonModelsEnumsOrganizationType.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,8 @@
65
65
66
66
*`AUTRES` (value: `'Autres'`)
67
67
68
+
*`EPA` (value: `'EPA'`)
69
+
68
70
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: docs/HelloAssoApiV5CommonModelsFormsFormQuickCreateRequest.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,7 @@ Name | Type | Description | Notes
45
45
**allow_organism_payer** | **bool** | Whether users are allowed to contribute to this form through an organism (only for donation and crowdfunding). | [optional]
46
46
**allow_individual_payer** | **bool** | Whether user are allowed to personally contribute to this form (only for donation and crowdfunding). | [optional]
47
47
**remind_abandoned_cart** | **bool** | Whether a reminder email should be sent for abandoned carts. | [optional]
48
+
**display_version** | **int** | The form display version (only for membership). | [optional]
48
49
**max_entries** | **int** | Indicates the maximum available entries for the whole form. Null means unlimited entries. | [optional]
**total_participant** | **int** | The number of participant for this event | [optional]
10
+
**un_grouped_tiers** | [**List[HelloAssoApiV5CommonModelsFormsTierStatsModel]**](HelloAssoApiV5CommonModelsFormsTierStatsModel.md) | The list of ungrouped tiers, sorted as they must be displayed | [optional]
11
+
**additional_options** | [**List[HelloAssoApiV5CommonModelsFormsTierStatsModel]**](HelloAssoApiV5CommonModelsFormsTierStatsModel.md) | The list of additional options, sorted as they must be displayed | [optional]
12
+
13
+
## Example
14
+
15
+
```python
16
+
from helloasso_python.models.hello_asso_api_v5_common_models_forms_form_stats_model import HelloAssoApiV5CommonModelsFormsFormStatsModel
17
+
18
+
#TODO update the JSON string below
19
+
json ="{}"
20
+
# create an instance of HelloAssoApiV5CommonModelsFormsFormStatsModel from a JSON string
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**is_authenticated** | **bool** | The organization is authenticated. Property returned only when asked by an organization admin. | [optional]
15
+
**display_coordinates** | **bool** | If the organization chose to display its coordinates. Property returned only when asked by an organization admin. | [optional]
15
16
**is_cash_in_compliant** | **bool** | If transaction can be init on the organization or not. Property returned only when asked by an organization admin. | [optional]
16
17
**banner** | **str** | The organization banner | [optional]
17
18
**fiscal_receipt_eligibility** | **bool** | The organism can issue fiscal receipts (type ok and has not deactivated it) Must configure it and be authenticated to become enabled | [optional]
0 commit comments