Official Content

Defines an Application Programming Interface for a set of programs like Data Providers or Procedures.

An API object groups several services that are semantically and functionally related. For each service, it declares a mapping between its external name (exposed as a service) and the internal implementation in the KB. It features flexibility in terms of service declaration, allowing the configuration of the HTTP method to be used when the service is REST. It also allows indicating the name and type of the parameters, offering great flexibility in parameter transformation.

It is meant for modeling an API mediation layer that clearly separates the interface from the implementation and so facilitates incremental development and the management of the evolution of an API.

API Interface

The API interface is declared in the 'Service Source' part of the object.

For each service of the interface, you can declare:

  • Name
  • Parameters
  • Which GeneXus object contains the implementation and with what parameters it is called.
  • Annotations for protocol-specific options.

API Protocols

The API object allows you to expose an API for the following protocols:

  • REST
  • gRPC (*)

At the object level, you have properties to enable each of them.

(*) The gRPC protocol is not supported in the .NET Framework generator. It is in beta state in the .NET and Java generators.

API Object Events

Events can be defined in the 'Events' part of the object.

This is where you can do the following:

  • Program data transformations to the service parameters, before and after calling the object that implements the service, which helps to maintain a stable API
  • Manage traffic, analyze it, apply service policies. That is, for example, count service calls, log them, accept or deny access to your API.

For each API object, you can define a 'Before' and 'After' event, which will be executed before and after each service implementation.
In addition, for each service you can define '<service name>.Before|After' events. So, every time a service is invoked, the following will be executed:

  • Event 'Before'
  • Event '<service>.Before'
  • The object corresponding to the implementation of the service, referenced in the 'Service Source'
  • Event '<service>.After'
  • Event 'After'

Database access is not allowed in Events. That kind of logic should be placed in the called Procedures or Data Providers.

API object Variables

Here you can define the variables to be used in the 'Service Source' and 'Events'.

There are some standard variables of each API object:

  • &Pgmname - It contains the name of the object.
  • &Pgmdesc - It contains the description of the object.
  • &RestMethod - It contains the HTTP method with which the object was called. It is empty when the object is called using protocols other than REST.
  • &RestCode - You may set it to customize the returned HTTP Status Code.
    Note: The values that the &RestCode variable can take are those of the categories: 2xx and 4xx. For more information see SAC #50865.

API object Properties

These are the properties that can be set at the object level:

Sample

This sample showcases the API called 'Client' with services to list clients, get details of a specific client, and insert a client.

This is the 'Service Source' part of the API object:

Client{

    List(out:&SDTClients) 
    => Core.ClientsList(&ClientCategoryCode,&SDTClients);

    GetByKey(in:&ClientId,out:&Client) 
    => Core.ClientGetbyKey(&ClientId,&Client);

    [RestMethod(POST)]
    Insert(in:&ClientId,in:&ClientName,in:&ClientAddress,out:&Messages) 
    => Core.ClientInsert(&ClientId,&ClientName,&ClientAddress,&Messages);
 }

Notes:

  • When accessed through the Rest Protocol, List and GetByKey are accessed via HTTP 'GET' Method, and Insert is accessed via 'POST' declared with the '[RestMethod(POST)]' annotation.
  • Service parameters have to be declared as in, out, or inout.
  • Parameter mapping and parameter value transformations can be done using the 'Events' part as shown below.
  • Overloading of services can be achieved in the REST interfaces by combining RestMethod and RestPath annotations.
  • For the REST protocol, the URI is as shown below:
    URLBase/ModuleName/ApiObjectName/Method
    So, in this sample, it is similar to the following:
    URLBase/Core/Client/List

Unless you use the "Services base path" property, where the URL is as shown:
URLBase/ServicesBasePath/Method

  • Objects referenced in the right part of each service are called using an internal protocol, even if they are exposed as services, or their Call protocol property says different.

This is the 'Events' part:

Event Before
    Statsregister(&pgmname)
EndEvent

Event List.Before
    &ClientCategoryCode = 'Any'
EndEvent

Event Insert.Before
    if &ClientId <= 0
        &RestCode = 412
        return
    endif
EndEvent

Event GetByKey.After
    if &Client.ClientId = 0
        &Message.Type = MessageTypes.Error
        &Message.Description = format("Client %1 was not found",&ClientId)
        &Messages.Add(&Message)
        &RestCode = 404
    endif    
EndEvent

Notes:

  • 'List.Before' initializes a variable that is not part of the API but that is required by the called object
  • The Procedure associated with the Insert service (and the Insert.After event) in this sample will only be executed if &ClientId > 0

You can download the source of this sample from this article: API Object Playground.

Consuming the ReST API

When Generate OpenAPI interface property is enabled, GeneXus generates a .yaml with the OpenAPI specification for each API object. That file (named <apiobject's qualified name>.yaml) contains all the information related to the services exposed by the API.

Parameters in the query string (input parameters of the services) are named, separated by &, and are also case-sensitive in Java. Therefore, if you consume the API, make sure to name them using the casing declared in the .yaml so that your consumer does not depend on the generator used to provide the services.

General recommendations

  • To enable an API to be consumed via several protocols and guarantee multi-platform support, you should not overload the service name (you should not use the same service name for different services in an API).
  • To avoid interface compatibility or stability problems, it is not recommended to use the same Structured Data Type that is used in an API object in services of another type: such as Rest Data Providers, Rest Procedures or Rest Business Components, because there may be differences between the serialization of these services.

Example

In the example below, the SDT named SDTClients it is being called only by Core.ClientsList:

     Client{
           List(out:&SDTClients)=> Core.ClientsList(&ClientCategoryCode,&SDTClients);
           }

Example

In the code shown below, the SDT named SDTClients is set to be a collection, however, the &SDTClients variable defined within the API object is not of a collection type.

    Client{
          List(out:&SDTClients)=> Core.ClientsList(&ClientCategoryCode,&SDTClients);
          }

Availability

See also

First Steps with API objects
API object Syntax
RestPath annotation
RestMethod annotation


Subcribe to this category's changes
Sub CategoriesAdd a new subcategory in this category
PagesAdd a new page in this category
Last update: February 2024 | © GeneXus. All rights reserved. GeneXus Powered by Globant