feat(loops): add Loops email platform integration#3359
Merged
waleedlatif1 merged 2 commits intostagingfrom Feb 27, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Greptile SummaryComplete Loops email platform integration with 10 tools covering contact management, email operations, and list management. Key Changes
Code Quality
Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Loops Block] --> B{Select Operation}
B -->|create_contact| C[loops_create_contact]
B -->|update_contact| D[loops_update_contact]
B -->|find_contact| E[loops_find_contact]
B -->|delete_contact| F[loops_delete_contact]
B -->|send_transactional_email| G[loops_send_transactional_email]
B -->|send_event| H[loops_send_event]
B -->|list_mailing_lists| I[loops_list_mailing_lists]
B -->|list_transactional_emails| J[loops_list_transactional_emails]
B -->|create_contact_property| K[loops_create_contact_property]
B -->|list_contact_properties| L[loops_list_contact_properties]
C --> M[POST /api/v1/contacts/create]
D --> N[PUT /api/v1/contacts/update]
E --> O[GET /api/v1/contacts/find]
F --> P[POST /api/v1/contacts/delete]
G --> Q[POST /api/v1/transactional]
H --> R[POST /api/v1/events/send]
I --> S[GET /api/v1/lists]
J --> T[GET /api/v1/transactional]
K --> U[POST /api/v1/contacts/properties]
L --> V[GET /api/v1/contacts/properties]
M --> W[Return contact ID]
N --> W
E --> X[Return contact array]
F --> Y[Return success message]
G --> Z[Return email status]
H --> Z
I --> AA[Return mailing lists]
J --> AB[Return templates + pagination]
K --> AC[Return success]
L --> AD[Return properties array]
Last reviewed commit: a1e9e06 |
eecc5b0 to
78fb920
Compare
Collaborator
Author
|
@cursor review |
Collaborator
Author
|
@greptile |
78fb920 to
4852f9f
Compare
4852f9f to
440a2bc
Compare
Add complete Loops integration with 10 tools covering all API endpoints: - Contact management: create, update, find, delete - Email: send transactional emails with attachments - Events: trigger automated email sequences - Lists: list mailing lists and transactional email templates - Properties: create and list contact properties Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
440a2bc to
ad98f8f
Compare
Collaborator
Author
|
@cursor review |
Collaborator
Author
|
@greptile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Test plan