0
Q:

rest api meaning

1) RESTful
2) API
An API is an interface through which one program or web site talks to another.
They are used to share data and services, and they come in many different
formats and types.

A RESTful API is one of the many possible ways that programs, servers, 
and web sites can share data and services. REST (Representational State Transfer
) describes the general rules for how the data and services are represented 
through the API so that other programs will be able to correctly request and 
receive the data and services that an API makes available
3
Let's break it into two components:

1) RESTful
2) API
An API is an interface through which one program or web site talks to another.
They are used to share data and services, and they come in many different
formats and types.

A RESTful API is one of the many possible ways that programs, servers, 
and web sites can share data and services. REST (Representational State Transfer
) describes the general rules for how the data and services are represented 
through the API so that other programs will be able to correctly request and 
receive the data and services that an API makes available
4
Representational state transfer is a software architectural style that defines
a set of constraints to be used for creating Web services.

Web services that conform to the REST architectural style, called RESTful Web
services, provide interoperability between computer systems on the internet
15
An endpoint is one end of a communication channel. 
it would be represented as the URL of a server or service.
In REST APIs, the resource typically refers to some object or set of objects 
that are exposed at an API endpoint. 
An endpoint by itself is just 
a reference to a URL that accepts web requests that may or may not be RESTful.
0
<devices size="3">
    <device id="1"> 
        <link rel="self" href="/devices/1"/>
        <name>apple-srx_201</name> 
        <serialNumber>1111</serialNumber> 
        <connectionStatus>up</connectionStatus> 
    </device> 
    <device id="2"> 
        <link rel="self" href="/devices/2"/>
        <name>apple-srx_202</name> 
        <serialNumber>2222</serialNumber> 
        <connectionStatus>down</connectionStatus> 
    </device> 
    <device id="3"> 
        <link rel="self" href="/devices/3"/>
        <name>apple-srx_203</name> 
        <serialNumber>3333</serialNumber> 
        <connectionStatus>up</connectionStatus> 
    </device> 
</devices> 
-1

New to Communities?

Join the community