ONE DAY SALE

Free Salesforce Developers Tutorials >

Chapter 13 - API >

Languages Used in creating APIs

Languages Used in creating APIs

What You’ll Learn


S2 Labs

Types Of Languages Used In Creating APIs

There are two most commonly used languages for communication between platforms:

1. JSON

JavaScript Object Notation is the language that works on JS concepts, can use an array, and is easy and quick to read.

{"Students":[
  { "firstName":"Harry", "lastName":"Potter" },
  { "firstName":"Steve", "lastName":"Smith" },
  { "firstName":"Tony", "lastName":"Starc" }
]}

2. XML

Extensible Markup Language is the language that do have tags and is used earlier when JSON hasn’t got introduced. Now, it is not that in use.

<Student>
  <Student>
    <firstName>Harry</firstName> <lastName>Potter</lastName>
  </Student>
  <Student>
    <firstName>Steve</firstName> <lastName>Smith</lastName>
  </Student>
  <Student>
    <firstName>Tony</firstName> <lastName>Starc</lastName>
  </Student>
</Student>

salesforce-developer

Download Study Material

Get access to exclusive study material for Salesforce Certification and ace your exams!

Download Now

Our Salesforce Certification Courses

Hey there! Glad you made it through our Salesforce Developer Training for beginners . But wait! We've got some high-in-demand Salesforce courses for you to take your Salesforce skills to the next level, making you a desired professional in the Salesforce job market.

Post a Comment

Your email address will not be published. Required fields are marked *