API Archives

How to get Attachments from Salesforce using API in C#

Author - Webner
|
0 Comments
|

Description: The code below shows how we can get Salesforce attachments from various objects and save them to a particular folder on a local disk. This is the complete code to get all attachments saved in all Contact objects in Salesforce.

string _baseFolderPath = “C:\Users\username\Desktop\SFAttachments Read more…

Upload document using Google Drive API in .Net

Author - Webner
|
0 Comments
|

We will create a console application using .net and upload documents to google drive using Google Drive API V3.

Step 1: Enable Drive API

Go to the Google API Console.
Select a project.
In the sidebar on the left, click on Library.
In the displayed list of available Read more…

Azure API Management

Author - Webner
|
0 Comments
|

INTRODUCTION

Azure API Management is a secure, scalable, and reliable way to manage, consume, and publish the APIs which are running on the Microsoft Azure platform. It provides the tools to fully manage the APIs. It makes sure that the APIs have optimal performance, authenticated security, proper usage Read more…

Creating Rest API in Node Js

Author - Webner
|
1 Comment
|

Rest API

Rest API is an application program interface, that uses GET, POST, PUT, DELETE data. It is referred to as a REPRESENTATIONAL STATE TRANSFER (RESTful) web service.

Creating the API

Creating Rest API in Node Js firstly needs to make a directory(mkdir restfulapi) to Read more…

Creating API’s with Node.js GraphQL

Author - Varun Chopra
|
0 Comments
|

Introduction

In this article, my aim is to present a quick guide on how to create Node.js GraphQL API. With a well-structured API, it is possible to have a solid, maintainable, and scalable API that can serve multiple kinds of front-end applications.

GraphQL is a Read more…

Etag Header in API Response

Author - Manju Kashyap

What is ETag header and how it works?

ETag stands for entity tag. Etag Header is a response header element which provides a mechanism to cache the unchanged resources. Whenever we make an API call, we can use this header value to track if Read more…

Salesforce SOAP and Bulk API Integration in PHP

Author - Ashish Gautam

Implementing Salesforce SOAP and Bulk API Integration in PHP

Salesforce SOAP API:
Salesforce SOAP API is a coding method to use our Org’s information with the help of inbuilt functions and SOQL query. With the help of these function, we can access or Read more…

Document Your API with “Doxygen Tool”

Author - Varun Chopra
|
0 Comments
|

Problem: Document Your API with “Doxygen Tool” | SOAP web services using spring jax-ws package (ubuntu 14.04)

Solution: Documenting any API is prerequisite if we are exposing our api web services to the third party to make them easily understandable to the outside world. Documenting Read more…

Introduction to WordPress REST API

Author - Mamta Sharma
|
0 Comments
|

WordPress REST APIs – Introduction and Example

What is an API?

API stands for Application Programming Interface. It is a piece of software that works as a bridge between two different applications.

For example suppose you have to post something on facebook Read more…