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
* Update version to 0.1.2 in pyproject.toml, __init__.py, and uv.lock; modify endpoint in AppDefinitionClient and enhance error logging in client methods
Signed-off-by: Rishabh Verma <rishabh.v@clappia.com>
* Update version to 0.1.4 in pyproject.toml, __init__.py, and uv.lock
Signed-off-by: Rishabh Verma <rishabh.v@clappia.com>
---------
Signed-off-by: Rishabh Verma <rishabh.v@clappia.com>
app_id: Application ID in uppercase letters and numbers format (e.g., MFX093412). Use this to specify which Clappia app to create the submission in.
25
25
data: Dictionary of field data to submit. Keys should match field names from the app definition, values should match expected field types. Example: {"employee_name": "John Doe", "department": "Engineering", "salary": 75000, "start_date": "20-02-2025"}.
26
-
email: Email address of the user creating the submission. This user becomes the submission owner and must have access to the specified app. Must be a valid email format.
26
+
requesting_user_email_address: Email address of the user creating the submission. This user becomes the submission owner and must have access to the specified app. Must be a valid email format.
27
27
28
28
Returns:
29
29
str: Formatted response with submission details and status
app_id: Application ID in uppercase letters and numbers format (e.g., MFX093412). Use this to specify which Clappia app contains the submission.
89
90
submission_id: Unique identifier of the submission to update (e.g., HGO51464561). This identifies the specific submission record to modify.
90
91
data: Dictionary of field data to update. Keys should match field names from the app definition, values should match expected field types. Only specified fields will be updated. Example: {"employee_name": "Jane Doe", "department": "Marketing", "salary": 80000, "start_date": "20-02-2025"}.
91
-
email: Email address of the user requesting the edit. This user must have permission to modify the submission. Must be a valid email format.
92
+
requesting_user_email_address: Email address of the user requesting the edit. This user must have permission to modify the submission. Must be a valid email format.
92
93
93
94
Returns:
94
95
str: Formatted response with edit details and status
0 commit comments