Page History
...
- Log in to the API Publisher.
- In the APIS menu, click Add New API.
- Select the option to design a new API and click Start Creating.
Give the information in the table below and click Add to add the resource.
Field Sample value Name PhoneVerification Context /phoneverifyAPI context is used to is used to uniquely identify the api API by the gateway. API context should be unique. This context is the API's root context when invoking the API through gateway.Tip Tip: You can define the API's version as a parameter of its context by adding the
{version}
into the context. For example,{version}/phoneverify
. The API Manager assigns the actual version of the API to the{version}
parameter internally. For example,https://localhost:8243/1.0.0/phoneverify
. Note that the version appears before the context, allowing you to group your APIs according to versions.Version 1.0.0 Visibility Public Tags phone, checkNumbers
Tip Tags can be used to filter out APIs matching some search criteria. We recommend adding tags which explain the functionality and purpose of the API. Subscribers can search APIs based on tags.
Resources URL pattern CheckPhoneNumber Request types GET, POST
Info The selection of HTTP method should match with the actual back end resource. For example, if the actual back end contains the GET method to get details of an phone number, then that resource should be matched with an GET resource type and with proper context
Note title Import or Edit API definition To import an existing swagger definition from a file or a URL, click Import. Click Edit Source to manually edit the API swagger definition.
After the resource is added, expand its
GET
method and update the Produces toapplication/xml
and Consumes toapplication/json
.Note We define MIME types in the resource definition. Consumes refers to the MIME type of request accepted by the backend service and Produces refers to the MIME type of response produced by the backend service which you define as the endpoint of the API.
Next, add the following parameters. You use these parameters to invoke the API using our integrated API Console in later tutorials.
Parameter Name Description Parameter Type Data Type Required PhoneNumber Give the phone number to be validated Query String True LicenseKey Give the license key as 0 for testing purpose Query String True Info You can define the following parameter types for resource parameters you are adding.
Parameter Type Description query
Contains the fields added as a Part of the invocation URL that holds data to be used to call the backend service. header
Contains the case-sensitive names followed by a colon (:) and then by it's value which carries additional information with the request which defines the operating parameters of the transaction. formData
Contains a property list of attribute names and values which includes in Message body. body
An arbitary arbitrary amount of data of any type which sends with a POST message And you can use following as Data type categories supported by swagger.
primitive
(input/output)- containers (as arrays/sets) (input/output)
- complex (as
models
) (input/output) void
(output)File
(input)
Tip title HTTP POST By design HTTP POST method specifies that the web server accepts data enclosed within the body of the request, hence when adding a POST method API manager adds the payload parameter to the POST method by default.
Info title Import or edit API definition "The “Import" button allows to define resources of the API using an existing swagger definition. Once the swagger is imported as file or from URL, the resources will be automatically added. And "Edit Source" button allows to edit the API swagger deifintion definition.
Once done, click Next: Implement > . Alternatively, click Save to save all the changes made to the API. You can come back later to edit it further by selecting the API and clicking Edit. For details about the states of the API see Manage the API Lifecycle .
Click the Managed API option.
The Implement tab opens. Give the information in the table below.
Field Sample value Endpoint type HTTP/REST endpoint Production endpoint This sample service has two operations as
CheckPhoneNumber
andCheckPhoneNumbers
. Let's useCheckPhoneNumber
here.
http://ws.cdyne.com/phoneverify/phoneverify.asmxTo verify the URL, click the Test button next to it. (This is the actual endpoint where the API implementation can be found)
Sandbox endpoint This sample service has two operations as
CheckPhoneNumber
andCheckPhoneNumbers
. Let's useCheckPhoneNumber
here.
http://ws.cdyne.com/phoneverify/phoneverify.asmxTo verify the URL, click the Test button next to it.
Info You can deploy your API as a Prototyped API in the Implement tab. A prototyped API is usually a mock implementation made public in order to get feedback about its usability. You can implement it Inline or by specifing specifying an endpoint.
Users can invoke the API without a subscription after publishing the API to the Store. For more information refer Deploy and Test as a Prototype.
Click Next: Manage > and give the information in the table below.
Field Sample value Description Transports HTTP and HTTPS The transport protocol on which the API is exposed. Both HTTP and HTTPS transports are selected by default. If you want to limit API availability to only one transport (e.g., HTTPS), un-check the other transport.
Warning You can only try out HTTPS based APIs via the API Console, because the API Store runs on HTTPS.
Subscription Tiers Select all The API can be available at different levels of service. They allow you to limit the number of successful hits to an API during a given period of time. Info title Make Default Version Make this the default version makes the api available in the gateway without version in the production and sandbox urls. This feature allows you to create a new version of API and make it as default version and in the client applications you can invoke the same resources without changing the API gateway URL. This allows to create new versions of API with changes and make it allow for existing clients application without client have to change the URLs.
See Working with Throttling for more information about maximum backend throughput and advanced throttling policies.
Click Save & Publish. This publishes the API that you just created to the API Store so that subscribers can use it.
Tip You can save partially complete APIs or save completed APIs without publishing them. Select the API and click on the Lifecycle tab to manage the API Lifecycle. For more details about the states of the API see API lifecycle.
...