Activity
Mon
Wed
Fri
Sun
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
What is this?
Less
More

Memberships

LWC Mastermind

10 members β€’ Free

Integration Mastery Cohort

37 members β€’ Free

AMPscriptAcademy

1.6k members β€’ Free

6 contributions to Integration Mastery Cohort
Week 5 - Auth & Named Credentials
Welcome to week 5! Write your homework here and I'll give you some feedback.
0 likes β€’ 11d
@Igor Kudryk my homework and additional task for week 5 https://docs.google.com/document/d/1d9O0ROEGEkqJIeUzerNNCKzb-goSOogm_RA5ARKwnLk/edit?tab=t.arqfka7to2j7
Week #4 - Logging & Testing
Welcome to week 4 :) We will finally cover how to use the logger and create a lightweight logging framework. Solve the homework and write your solution in the comments here πŸ‘‡ Good luck ;)
Week #4 - Logging & Testing
1 like β€’ 16d
@Igor Kudryk Homework week 4 https://docs.google.com/document/d/1d9O0ROEGEkqJIeUzerNNCKzb-goSOogm_RA5ARKwnLk/edit?tab=t.y1oo0mne1d97
Week #3 - Callouts from Triggers
This is an exciting week! We'll build some real projects using Stripe. Because that's literally the only way to learn Integrations. But I also talked a bit more about Architecture. If you are more advanced, I really recommend that you watch this video and try to play around with this architecture. The schedule for this week is the same: 1. Alon's Weekly Session Tuesday 7 p.m. EDT 2. My Weekly Session Tuesday 7 p.m. CET No Sunday session this time. Just post any questions here in the community and we'll all help you Also, I have one ask... If you are enjoying the cohort, could you leave me a review? It takes 30 seconds, and I'll send you some cool bonuses. ​Click here to leave the review​ And of course, do the homework and post here down here in the comments πŸ‘‡πŸ‘‡πŸ‘‡
1 like β€’ 28d
Hello @Igor Kudryk . PFA link to my homework https://docs.google.com/document/d/1d9O0ROEGEkqJIeUzerNNCKzb-goSOogm_RA5ARKwnLk/edit?tab=t.mp6vxg5aaik3
0 likes β€’ 28d
@Igor Kudryk thank you
Week #2 - POST Requests
Week 2 is live! We'll cover POST requests and how to make the first request with the real API. Homework is here. Write your solutions down below! LET'S GOO!
Week #2 - POST Requests
0 likes β€’ Nov 13
Hello @Igor Kudryk . Here is my homework & optional homework for week #2 https://docs.google.com/document/d/1d9O0ROEGEkqJIeUzerNNCKzb-goSOogm_RA5ARKwnLk/edit?usp=sharing
1 like β€’ Nov 15
@Igor Kudryk done. Thank you.
Week #1 - Basics Of Requests
--------- Schedule --------- Let's get started!! This week, we'll cover the basics of requests, The first-ever live session will happen this Tuesday, 7 p.m. CET (2 p.m. EDT). You can find the schedule here. --------- Homework --------- There are 4 easy tasks this week. And 1 coding task. You can find them all here. Write solutions here in the comments, and I'll check them πŸ‘‡πŸ‘‡πŸ‘‡ If any questions - write here as well :) LFG! P.S. There are rumors that people who solve the most tasks will get some bonuses :)
1 like β€’ Nov 2
@Igor Kudryk Question #1 What are the components of an HTTP request? - Endpoint - Request Type - Headers Question #2 What are the components of an HTTP response? - Headers - Status Code - Body (payload)Β  Question #3 What are the 2 most popular payload formats? - JSON - XML Question #4 Explain JSON format in your own words. Give an example. It represents data as key-value pairs, similar to a Map in Apex. Each key must be a string (written in double quotes).Each value can be one of the following types: - String - Number - Boolean - Object - Array Example:{ "name" : "Manisha Lal", "city" : "Seattle", "email" : "[email protected]", "skills" : ["Salesforce", "Apex", "Marketing Cloud"], "address": { "street" : "xyz 123 Street", "postal code" : "9867-038" } } Question #5 static final String ENDPOINT = 'https://735ef563-176d-431c-85ce-2cc07056ef03.mock.pstmn.io/payments/link'; static final String GETMETHOD = 'GET'; HttpRequest request = new HttpRequest(); request.setEndpoint(ENDPOINT); request.setMethod(GETMETHOD); Http http = new Http(); HttpResponse response = http.send(request); String responseBody = response.getBody(); Map<String, Object> responseAsMap = (Map<String, Object>) JSON.deserializeUntyped(responseBody); Map<String, Object> transactions = (Map<String, Object>) responseAsMap.get('transaction'); Map<String, Object> details = (Map<String, Object>) transactions.get('details'); String ipAddress = (String)details.get('IP'); System.debug(ipAddress);
1 like β€’ Nov 8
@Igor Kudryk got it. Its a script only.
1-6 of 6
Manisha Lal
2
14points to level up
@manisha-lal-5783
SFMC developer | Salesforce Developer

Active 13h ago
Joined Oct 21, 2025
Seattle, WA
Powered by