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

Headman Nation

1.9k members • $49/m

Cloud Career Kickstarter

2.1k members • Free

Socializers

21k members • Free

1 contribution to Integration Mastery Cohort
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 :)
0 likes • 17d
Week 1 Homework: Question #1 What are the components of an HTTP request? End Point, Request Type, Header, Body Question #2 What are the components of an HTTP response? Header, Status Code, Body Question #3 What are the 2 most popular payload formats? Post Request, Get Request in Json or XML Question #4 Explain JSON format in your own words. Give an example. In my own words JSON is a key value pair like a MAP in apex. It’s just attributes or field technically that have values on the right side of the pair separated by a colon. Json is used when browsers and servers need to send information to each other
0 likes • 17d
this was the anonymous apex that worked for me after setting up the remote site setting: Http http = new Http(); HttpRequest req = new HttpRequest(); req.setEndpoint('https://735ef563-176d-431c-85ce-2cc07056ef03.mock.pstmn.io/payments/link'); req.setMethod('GET'); HttpResponse res = http.send(req); if (res.getStatusCode() == 200) { Map<String, Object> data = (Map<String, Object>) JSON.deserializeUntyped(res.getBody()); System.debug('IP Address: ' + (String)data.get('ip_address')); } else { System.debug('Callout failed: ' + res.getStatus()); }
1-1 of 1
Trent Bacon
1
5points to level up
@trent-bacon-9144
Salesforce Admin currently. I am getting a cloud computing degree from WGU

Active 7h ago
Joined Oct 22, 2025
Kansas city
Powered by