Interface PostNextActionLink

Represents a POST request link to the next action.

This is a same origin callback URL used to fetch the next action in the chain.

  • This callback URL will receive a POST request with a body of NextActionPostRequest.
  • It should respond with a NextAction.
interface PostNextActionLink {
    href: string;
    type: "post";
}

Properties

Properties

href: string

Relative or same origin URL to which the POST request should be made.

type: "post"

Indicates the type of the link.