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

Memberships

Integration Mastery Cohort

36 members • Free

Apex Mastery Cohort

18 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.
1 like • 7d
Happy Friday! Here's my homework for week #5: https://docs.google.com/document/d/1jmZXowCkC5uwfP68G_MSpEocnWjNy6t8clTtMZiFuUk/edit?usp=sharing
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 👇👇👇
0 likes • 17d
@Igor Kudryk I have the PaymentLinkCallout.cls where I am getting the link from Stripe in the generateLink method and then I am calling the generateLink method in the PaymentLinkQueueable that is chained to the StripeSyncQueueable. Or is this question related to the optional task that I misunderstood:)?
1 like • 17d
@Igor Kudryk got it! I will correct this. 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 • 24d
@Igor Kudryk oops,sorry about that. Just enabled
0 likes • 21d
@Igor Kudryk thank you♥️
Hey Lifelong learners! Let's Connect on LinkedIn! 🚀
Who wants to connect on LinkedIn? I truly believe that people who are continuously learning are the best kind of people to know and grow with, so I would love to connect with you! Drop your LinkedIn profile in the comments below and let's build a network of lifelong learners! 🚀
3 likes • 24d
https://www.linkedin.com/in/julia-aniskevich-b1a71a89/
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 • Oct 31
Happy Friday! My Homework Question #1 What are the components of an HTTP request? Request Type,Endpoint, Header, Payload (if post request type) Question #2 What are the components of an HTTP response? Header, Response Body, Status code Question #3 What are the 2 most popular payload formats? JSON and xml (SOAP API, Enterprise/Partner WSDL) Question #4 Explain JSON format in your own words. Give an example. JSON format represents a map of key value pairs where the key is always a string and the value can be a number, string,boolean, object or other nested map, list. JSON Example: { "name": "John Doe", "age": 30, "email": "john@example.com", "skills": ["Java", "Apex", "Python"], "address": { "street": "123 Main St", "city": "Springfield", "country": "USA" } } Question #5 HttpRequest request = new HttpRequest(); request.setMethod('GET'); request.setEndpoint('https://735ef563-176d-431c-85ce-2cc07056ef03.mock.pstmn.io/payments/link'); Http http = new Http(); HttpResponse response = http.send(request); Integer statusCode = response.getStatusCode(); if(statusCode >=200 && statusCode < 300){ System.debug('Sucess: '+statusCode); } else{ System.debug('Failure: '+statusCode); } String responseBody = response.getBody(); Map<String,Object> responseMap = (Map<String,Object>) JSON.deserializeUntyped(responseBody); Map<String,Object> transactionMap = (Map<String,Object>) responseMap.get('transaction'); if(transactionMap == null){ System.debug('No Tranaction Available'); return; } else{ Map<String,Object> detailsMap = (Map<String,Object>) transactionMap.get('details'); if(detailsMap == null){ System.debug('No Transaction Details Available'); return; } else{ String ip = (String) detailsMap.get('IP'); System.debug(ip); } }
1-6 of 6
Julia Aniskevich
2
10points to level up
@julia-aniskevich-2222
Hi, I’m Julia — a Salesforce problem-solver by day, chaos-tamer by nature.

Active 1d ago
Joined Oct 21, 2025
Poland
Powered by