Type Alias WebIntegrationPost

The creation of a web integration response.

type WebIntegrationPost = {
    created?: string;
    createdBy?: string;
    id?: string;
    lastUpdated?: string;
    links?: { self: { href: string } };
    name?: string;
    tenantId?: string;
    validOrigins?: string[];
}
Index

Properties

created?: string

The time the web integration was created.

createdBy?: string

The user that created the web integration.

id?: string

The unique web integration identifier.

lastUpdated?: string

The time the web integration was last updated.

links?: { self: { href: string } }

Pagination links

Type declaration

  • self: { href: string }

    Link information for current page.

    • href: string

      URL to the current page of records.

name?: string

The name of the newly created web integration.

tenantId?: string

The tenant that the web integration belongs to.

validOrigins?: string[]

The origins that are allowed to make requests to the tenant.