Payload

Examples

import { Payload } from "@intuned/sdk/runtime"

const payload: Payload = {
  api: 'exampleApi',
  parameters: {
    key1: 'value1',
    key2: 'value2'
  }
};

Properties

api

api: string;

The API path you want to extend.


parameters

parameters: Record<string, any>;

A record of key-value pairs representing the parameters to be sent to the API