Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
0a34999
Adding get and delete entry
gsmcdonald Jan 24, 2024
2f851f5
Merge pull request #4 from cognitoforms/adding-get-and-delete-entry
gsmcdonald Jan 25, 2024
fc9abf4
Removing schema from default response
gsmcdonald Feb 1, 2024
3e766ef
Merge pull request #5 from cognitoforms/fixing-validation-errors
gsmcdonald Feb 1, 2024
47799ff
Merge branch 'microsoft:dev' into dev
gsmcdonald Feb 5, 2024
afd7df0
Fixing spelling
gsmcdonald Feb 5, 2024
d8541dd
Merge pull request #8 from cognitoforms/fixing-spelling
gsmcdonald Feb 5, 2024
6426bea
Adding it
gsmcdonald Mar 5, 2024
fe22bf7
Merge pull request #9 from cognitoforms/adding-global-per-connector
gsmcdonald Mar 5, 2024
48ed235
Merge branch 'microsoft:dev' into dev
gsmcdonald Mar 5, 2024
6327f4b
Handling PR feedback to remove redirectUrl
gsmcdonald Mar 6, 2024
0f53adf
Removing entry input parameter from GetEntry endpoint
gsmcdonald Apr 3, 2024
ce53d84
Merge pull request #10 from cognitoforms/removing-entry-parameter-fro…
gsmcdonald Apr 3, 2024
a9850ee
Merge branch 'microsoft:dev' into dev
gsmcdonald Apr 3, 2024
3988480
Merge branch 'microsoft:dev' into dev
gsmcdonald Jun 7, 2024
c954fba
Removing response body from delete entry operation
gsmcdonald Jun 7, 2024
ba083ae
Merge pull request #11 from cognitoforms/removing-output-body-from-de…
gsmcdonald Jun 7, 2024
f2d27bc
Merge branch 'microsoft:dev' into dev
gsmcdonald Jul 26, 2024
03a5ac7
change to object
corpeningc Jul 26, 2024
1820fbd
Merge pull request #12 from corpeningc/fix-error-obj
gsmcdonald Jul 26, 2024
35a380c
Merge branch 'microsoft:dev' into dev
corpeningc Aug 19, 2025
08a05ec
Update swagger file
corpeningc Aug 19, 2025
ca9e86d
Merge pull request #13 from cognitoforms/integration-enhancements-202…
corpeningc Aug 21, 2025
c709a61
update version
corpeningc Aug 26, 2025
225bf32
Merge pull request #14 from cognitoforms/update-version-1.1
corpeningc Aug 26, 2025
e6988fc
Merge branch 'microsoft:dev' into dev
corpeningc Aug 26, 2025
f569e3c
pasting error
corpeningc Aug 26, 2025
b6edbb3
add x-ms-summary
corpeningc Sep 2, 2025
537d20f
Update apiProperties
corpeningc Sep 9, 2025
f0b8d69
Merge branch 'microsoft:dev' into dev
corpeningc Sep 9, 2025
18406dd
Update read me
corpeningc Sep 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions certified-connectors/Cognito Forms/apiProperties.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
},
"customParameters": {
"authorizationUrl": {
"value": "https://www.cognitoforms.com/admin/oauthlogin"
"value": "https://www.cognitoforms.com/api-connection"
},
"tokenUrl": {
"value": "https://www.cognitoforms.com/admin/oauthtoken"
},
"refreshUrl": {
"value": "https://www.cognitoforms.com/admin/oauthtoken"
"value": "https://www.cognitoforms.com/admin/oauthping"
}
}
}
Expand Down
36 changes: 34 additions & 2 deletions certified-connectors/Cognito Forms/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,47 @@ There will be no output.
- `form`: The internal form name or Id
- `entryId`: The entry number or entry Id for the entry to be deleted

#### ImportEntries

This action will create, update, or delete entries using provided file content (.xlsx or .csv).
The output will be an object containing the import ID and status.

##### Parameters:
- `form`: The internal form name or Id
- `File`: The file (.xlsx or .csv) containing the entries to import
- `ImportMode`: The mode for the import (CreateNew, UpdateExisting, or SyncEntries)
- `Email`: The email address to receive import notifications (optional)
- `MatchEntriesUsing`: An entry ID substitute (optional)

#### GetImportStatus

This action will get the current status of an import and returns the number of successful and unsuccessful entries.
The output will be an object containing the import status, counts, and error information if applicable.

##### Parameters:
- `form`: The internal form name or Id
- `importId`: The ID of the import to check status for

#### GetEntryViewEntries

This action will get all entries for a specified view.
The output will be the entry data based on the view configuration.

##### Parameters:
- `form`: The internal form name or Id
- `viewId`: The ID of the view
- `$count`: Include total count of entries (optional)
- `$select`: Returns list of entry IDs in a View when $select=Id is specified (optional)

### Private Operations

These operations are enablers for the public triggers and actions.

#### GetForms

This operation will return a list of forms as objects that contain the `Id`, `InternalName`, and `Name`.
This operation will return a list of forms as objects that contain the `Id` and `Name`.
When used for the `form` parameter for actions and triggers, the user should see the `Name`,
but the `InternalName` should be sent to the API.
but the `Id` should be sent to the API. Archived forms are not included in the response.

#### GetFormSchema

Expand Down