Notes
public with sharing class RestGo {
public static Void PostUser(){
Http http = new Http();
HttpRequest request = new HttpRequest();
request.setEndpoint('https://gorest.co.in/public/v2/users?access-token=3b54f23b326ea971563fab3d2873fdec0909ecb83cddc7091189283e25676b01');
request.setBody('{"name":"John Smith", "gender":"male", "email":"JohnSmith@js.com", "status":"active"}');
request.setHeader('Content-Type', 'application/json;charset=UTF-8');
request.setMethod('POST');
HttpResponse response = http.send(request);
}
}
Video
Video does not exists.