functional-models
    Preparing search index...

    Interface RestInfo

    Basic REST information for a model.

    interface RestInfo {
        endpoint: string;
        method: HttpMethods;
        security: SecurityRequirementObject;
    }
    Index

    Properties

    endpoint: string

    The endpoint (not including the base domain). This format can include ":id" to describe a specific instance id. Example: /api/v2/whatever-i-want/model/:id The following are the defaults by API method: create: '/namespace/app', retrieve: '/namespace/app/id', update: '/namespace/app/id', delete: '/namespace/app/id', search: '/namespace/app/search',

    method: HttpMethods

    The HTTP Method. The following are the defaults used: create: post, retrieve: get, update: put, delete: delete, search: post,

    security: SecurityRequirementObject

    Security descriptions