githubEdit

Custom Status Codes

This sample shows how to define custom status codes for an API endpoint.

New-PSUEndpoint -Url '/status' -Endpoint {
    New-PSUApiResponse -StatusCode 418
}

This sample returns the I am a teapot status codearrow-up-right.

Last updated

Was this helpful?