ReleaseType.GetAll

Try it in Swagger

Endpoint

Request Schema

Headers

Header Required Notes
X-Api-Key Required when tenant is not resolved by subdomain Resolves the tenant/customer database.
Authorization: Bearer {token} Required for authorized endpoints Get a token from Auth/Token or Session/Create.

This endpoint does not accept a JSON request body.

Expected Response Schema

Status Codes

Status Notes
200 OK Returned by the controller for this operation.

Success Body

Response type: IReadOnlyList<ReleaseTypeDto>

Returns the valid releaseType options for photo copy orders. Submit the returned code value in PhotoCopyOrderRequest.releaseType; use title for display text.

Field Type Max Length Notes
code int Value to send as releaseType.
state string State associated with the release type, when applicable.
title string Display text for the release type option.

Response Sample

[
  {
    "code": 11,
    "state": "CA",
    "title": "Medical Records Authorization"
  }
]