Deep ThoughtsBlog
← Back to all writing

Network+ Exam

intergrations and api

October 29, 2025

  • #network+

intergrations and api

intergration - proces of combining different subsystems or comonts into one app.

API - set of rules and protocols that are used for building and intergrating applicaiton software.

libray of programming utils that allow us to be able to commuincate between different portions of a service.

rest - representational state transfer - uses HTTP methods, status codes, resource. uses .JSON message and makes it lightweight

soap - simple object acess protocol. - XML format protocol that defines a strict standart wit a a

rest is more straight forward, soap provides more security.

APIS allow for intergration between different services.

freshdesk can get all tickets into one place. anytime you send an email to support it goes to freshdesk it is a tickigngg system.

πŸ”— Integration & APIs

πŸ”‘ Integration

  • Definition: Process of combining different subsystems or components into a single application or workflow.
  • Goal: Enable interoperability between different software/services.

πŸ› οΈ APIs (Application Programming Interfaces)

  • Definition: A set of rules, protocols, and tools for building and integrating software applications.
  • Acts like a library of utilities that allows different systems to communicate.
  • Example: A helpdesk API (Freshdesk) can pull in all support tickets from email into one system.

🌐 API Types

  • REST (Representational State Transfer)
    • Uses HTTP methods (GET, POST, PUT, DELETE).
    • Status codes (200 OK, 404 Not Found, 500 Server Error).
    • Data format: JSON (lightweight, human-readable).
    • βœ… Easier to use, more flexible.
  • SOAP (Simple Object Access Protocol)
    • Uses XML as the message format.
    • Strict standards β†’ more overhead.
    • βœ… Stronger built-in security (WS-Security, encryption, authentication).

πŸ” REST vs SOAP

  • REST β†’ Simpler, faster, lightweight, common in modern apps.
  • SOAP β†’ Heavier, but more secure and standardized.
  • Exam Tip: CompTIA often phrases this as: β€œREST = easier, SOAP = stricter and more secure.”

βœ… Exam Takeaways

  • APIs enable integration between apps/services.
  • REST = JSON + HTTP methods, lightweight.
  • SOAP = XML + strict standards, more secure.
  • Real-world example: Freshdesk API integrates email β†’ ticketing system.

⚑ Sample Question:

β€œWhich API style commonly uses HTTP methods and JSON to allow lightweight communication between app