Skip to content
Staircase

Setup

Self-service account and environment creation, between a user interface and the platform's own APIs.

Creating an account and its first environment touches several products in a fixed order — identity, environment provisioning, catalogue installation and key issuance. This product carries that sequence so a front end can present it as one step.

Per-vendor credential onboarding follows the same shape: each vendor integration exposes an endpoint to store a lender's credentials and another to describe the schema those credentials must satisfy, so the form can be rendered from the schema rather than hand-built per vendor.

Operations

Setup

POST /setupAccount

Setup Account

setup-account

Setup new account.

Create new account and send an email

Request
application/json

An example of a payload.

{
  "first_name": "John",
  "last_name": "Doe",
  "email": "john.doe@company.com",
  "company_name": "company",
  "company_industry": "Mortgage Broker",
  "company_size": "1-50",
  "address": "STREET",
  "zip_code": "00000",
  "state": "CA",
  "password": "XXXXX"
}
Response
application/json

OK.

{
  "transaction_id": "aaaa-bbb-xccccc"
}
Parameters
2
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
Content-Type required string header application/json The content type.
Request bodyapplication/json
10 fields
FieldTypeDescription
first_namerequiredstringFirst nameExample John
last_namerequiredstringLast nameExample Doe
emailrequiredstringEmail of accountExample john.doe@company.com
company_namerequiredstringCompany nameExample company
company_industryrequiredstringCategory of companyExample Mortgage Broker
company_sizerequiredstringNumber employees in the companyExample 1-50
addressrequiredstringAddressExample STREET
zip_coderequiredstringZip CodeExample 00000
staterequiredstringStateExample CA
passwordrequiredstringPassword of accountExample XXXXX
Response 200application/json
1 fields

OK.

FieldTypeDescription
transaction_idstringTransaction ID
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
POST /refresh_token

Refresh Token

Refresh-token

Returns new token when access_token expires

Request
application/json

An example of a payload.

{
  "refresh_token": "<redacted>"
}
Response
application/json

OK.

{
  "id_token": "xxxxxx",
  "refresh_token": "<redacted>",
  "token_type": "yyyyyy"
}
Parameters
2
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
Content-Type required string header application/json The content type.
Request bodyapplication/json
1 fields
FieldTypeDescription
refresh_tokenrequiredstringToken to refreshExample <redacted>
Response 200application/json
3 fields

OK.

FieldTypeDescription
id_tokenstringThe ID token.
refresh_tokenstringThe refresh token.
token_typestringThe token type.
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
POST /sign_in

Sign In

sign-in

Sign in.

Sign in the credentials

Request
application/json

An example of a payload.

{
  "email": "john.doe@company.com",
  "password": "XXXXX"
}
Response
application/json

OK.

{
  "id_token": "xxxxxx",
  "refresh_token": "<redacted>",
  "token_type": "yyyyyy"
}
Parameters
2
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
Content-Type required string header application/json The content type.
Request bodyapplication/json
2 fields
FieldTypeDescription
emailrequiredstringEmail of accountExample john.doe@company.com
passwordrequiredstringPassword of accountExample XXXXX
Response 200application/json
3 fields

OK.

FieldTypeDescription
id_tokenstringThe ID token.
refresh_tokenstringThe refresh token.
token_typestringThe token type.
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
GET /check_email_availability/{email}

Check Email Availability

check-Email-Availability

Checks email registered incognito pool

Response
application/json

OK.

{
  "status": "AVAILABLE"
}
Parameters
2
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
email required string path john.doe@company.com Email of account
Response 200application/json
1 fields

OK.

FieldTypeDescription
statusstringStatus of account
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
GET /retrieve_all_products

Get all products

get-all-products

Get all products from marketplace

Response
application/json

OK.

{
  "products": [
    {
      "name": "Account Management",
      "description": "",
      "status": "NOT_DEPLOY"
    }
  ]
}
Parameters
2
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
Authorization required string header <redacted> Setup authorization token
Response 200application/json
1 fields

OK.

FieldTypeDescription
productsobject[]List of products
namestringProduct name
descriptionstringDescription of product
statusstringStatus of deploy of product (NOT_DEPLOY, IN_QUEUE; FAILED, SUCCESS)
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
GET /admin_retrieve_transaction_status

Get environment creation status

admin_retrieve_transaction_status

Response
application/json

OK.

{
  "status": "DEPLOYING_INFRASTRUCTURE_PRODUCTS"
}
Parameters
2
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
Authorization required string header <redacted> Setup authorization token
Response 200application/json
1 fields

OK.

FieldTypeDescription
statusstringStatus of environment
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
POST /submit_customer_api_key

Send email

submit-customer-api-key

Submit API key received by email

Request
application/json

An example of a payload.

{
  "api_key": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
Response
application/json

OK.

{
  "body": "Task success sent"
}
Parameters
3
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
Content-Type required string header application/json The content type.
Authorization required string header <redacted> Setup authorization token
Request bodyapplication/json
1 fields
FieldTypeDescription
api_keyrequiredstringAPI key of environmentExample xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Response 200application/json
1 fields

OK.

FieldTypeDescription
bodystringResponse of endpoint
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
POST /submit_product_deploy_options

Save product selected

submit-product-deploy-options

Save product selected of environment created in the front-end side

Request
application/json

An example of a payload.

{
  "products_selected": [
    "Code",
    "Assess"
  ]
}
Response
application/json

OK.

{
  "body": "Task success sent"
}
Parameters
3
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
Content-Type required string header application/json The content type.
Authorization required string header <redacted> Setup authorization token
Request bodyapplication/json
1 fields
FieldTypeDescription
products_selectedrequiredstring[]Products selected
Response 200application/json
1 fields

OK.

FieldTypeDescription
bodystringResponse of endpoint
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
GET /user-info

Get information about authenticated user

user-info

Response
application/json

OK.

{
  "UserAttributes": {
    "sub": "xxxxass-xxx-xxxx-xxxx-xxxxxxxxx",
    "email_verified": "true",
    "company_name": "Staircase",
    "email_confirmed": "False",
    "api_key_submitted": "True",
    "last_name": "Doe",
    "setup_id": "xxxxass-xxx-xxxx-xxxx-xxxxxxxxx",
    "api_key": "<redacted>",
    "first_name": "John",
    "account_id": "xxxxass-xxx-xxxx-xxxx-xxxxxxxxx",
    "email": "john.doe@staircase.co",
    "company_status": "SETUP_COMPLETED",
    "environment_fqdn": "setup-xxx-xxxxxx.staircaseapi.com"
  },
  "LosAttributes": [
    {
      "provider": "Encompass",
      "credentials": {
        "clientId": "xxxxx",
        "instanceId": "xxxxx",
        "username": "xxxxx"
      },
      "isAdmin": true,
      "adminEmail": "",
      "adminPhone": ""
    }
  ]
}
Parameters
2
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
Authorization required string header <redacted> Setup authorization token
Response 200application/json
2 fields

OK.

FieldTypeDescription
UserAttributesrequiredobjectInformation of user
subrequiredstringID of user incognito
email_verifiedrequiredstringEmail is verified incognito
company_namerequiredstringCompany name of user
email_confirmedrequiredstringEmail was confirmed incognito
api_key_submittedrequiredstringIf the API key was submitted
last_namerequiredstringLast name
setup_idrequiredstringID the user in step functions
api_keyrequiredstringAPI key of environment related with the user
first_namerequiredstringFirst name
account_idrequiredstringID of user in account product
emailrequiredstringEmail of user
company_statusrequiredstringStatus in the flow of setup
environment_fqdnrequiredstringDomain of environment related with the user
LosAttributesobject[]List of LOS Providers
providerrequiredstringProvider name
isAdminrequiredbooleanStatus if the user is admin
adminEmailstringThe admin email if the user is not Admin
adminPhonestringThe admin phone if the user is not Admin
credentialsrequiredobjectCredentials of LOS Configuration
clientIdstringClient ID of LOS Credentials
instanceIdstringInstance ID of LOS Credentials
usernamestringUsername of LOS Credentials
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
POST /submit_los_configuration/{provider_name}

Create new LOS configuration

submit_LOS_configuration

Request
application/json

An example of a payload.

{
  "credentials": {
    "clientId": "xxxxx",
    "instanceId": "xxxxx",
    "username": "xxxxx"
  },
  "isAdmin": true,
  "adminEmail": "",
  "adminPhone": ""
}
Response
application/json

OK.

{
  "message": "The credential was stored successfully"
}
Parameters
3
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
provider_name required string path Encompass Provider name (NoProvider, Encompass)
Authorization required string header <redacted> Setup authorization token
Request bodyapplication/json
4 fields
FieldTypeDescription
isAdminrequiredbooleanStatus if the user is admin
adminEmailstringThe admin email if the user is not Admin
adminPhonestringThe admin phone if the user is not Admin
credentialsrequiredobjectCredentials of LOS Configuration
clientIdstringClient ID of LOS Credentials
instanceIdstringInstance ID of LOS Credentials
usernamestringUsername of LOS Credentials
Response 201application/json
1 fields

OK.

FieldTypeDescription
messagerequiredstringCreated description.
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
POST /sms-templates/{product}

Create new SMS template by product

create-sms-templates

Request
application/json

An example of a payload.

{
  "text_body": "xxxxxxxx xxxx xxxxxx"
}
Response
application/json

Created.

{
  "text_body": "xxxxxxxx xxxx xxxxxx",
  "name": "sms_template"
}
Parameters
3
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
product required string path Employment Product name (Employment, Income)
Authorization required string header <redacted> Setup authorization token
Request bodyapplication/json
1 fields
FieldTypeDescription
text_bodyrequiredstringContent of template
Response 201application/json
2 fields

Created.

FieldTypeDescription
text_bodyrequiredstringContent of template
namerequiredstringTemplate name
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
GET /sms-templates/{product}

Retrieve SMS template by product

retrieve-sms-templates

Response
application/json

Created.

{
  "text_body": "xxxxxxxx xxxx xxxxxx",
  "name": "sms_template"
}
Parameters
3
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
product required string path Employment Product name (Employment, Income)
Authorization required string header <redacted> Setup authorization token
Response 200application/json
2 fields

Created.

FieldTypeDescription
text_bodyrequiredstringContent of template
namerequiredstringTemplate name
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
POST /email-templates/{product}

Create new email template by product

create-email-templates

Request
application/json

An example of a payload.

{
  "html_part": "<!DOCTYPE html> <html lang=\"en\"> </html>\n",
  "subject_part": "xxxx xxxxx",
  "logo_data": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABA4AAAQcCAYAAAAVwNnQAAA"
}
Response
application/json

Created.

{
  "html_part": "<!DOCTYPE html> <html lang=\"en\"> </html>\n",
  "subject_part": "xxxx xxxxx",
  "product_name": "Income"
}
Parameters
3
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
product required string path Employment Product name (Employment, Income)
Authorization required string header <redacted> Setup authorization token
Request bodyapplication/json
3 fields
FieldTypeDescription
html_partrequiredstringContent of template
subject_partrequiredstringSubject of template
logo_datastringLogo of template in Base64 encode
Response 201application/json
3 fields

Created.

FieldTypeDescription
html_partrequiredstringContent of template
subject_partrequiredstringSubject of template
product_namerequiredstringProduct Name
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
GET /email-templates/{product}

Retrieve email template by product

retrieve-email-templates

Response
application/json

Created.

{
  "template": {
    "text_body": "xxxxxxxx xxxx xxxxxx",
    "name": "sms_template",
    "logo_image": "xxxxxxxxxxxxxxxxx"
  }
}
Parameters
3
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
product required string path Employment Product name (Employment, Income)
Authorization required string header <redacted> Setup authorization token
Response 200application/json
1 fields

Created.

FieldTypeDescription
templaterequiredobjectInformation about the template
text_bodystringContent of template
namestringTemplate name
logo_imagestringURL of logo
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
POST /vendor/{vendor}/credentials

Create credentials by vendor

create-vendor-credentials

Request
application/json

An example of a payload.

{
  "username": "xxxxxxxx",
  "password": "<redacted>",
  "title_provider_orderings": {
    "default_ordering": [
      "fidelity",
      "first_american",
      "stewart"
    ]
  }
}
Response
application/json

Setup API Triggered Successfully

{
  "message": "Credentials are saved"
}
Parameters
3
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
vendor required string path ernst Vendor name (ernst)
Authorization required string header <redacted> Setup authorization token
Request bodyapplication/json
3 fields
FieldTypeDescription
usernamestringUsername of credential
passwordstringPassword of credential
title_provider_orderingsrequiredobjectAn object to set default title fees' provider list for states, counties and cities
default_orderingstring[]Root default ordering for title fees' provider
statesobject[]States
state_codestringState code
default_orderingstring[]Default title provider ordering for the state
countiesobject[]Counties
county_namestringCounty name
default_orderingstring[]Default title provider ordering for the county
citiesobject[]Cities
Response 200application/json
1 fields

Setup API Triggered Successfully

FieldTypeDescription
messagestringMessage
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 422application/json
2 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
errorstringMessage
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
Other responses

404

GET /vendor/{vendor}/credentials

Retrieve credentials by vendor

retrieve-vendor-credentials

Response
application/json

An example of a payload.

{
  "username": "xxxxxxxx",
  "password": "<redacted>",
  "title_provider_orderings": {
    "default_ordering": [
      "fidelity",
      "first_american",
      "stewart"
    ]
  }
}
Parameters
3
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
vendor required string path ernst Vendor name (ernst)
Authorization required string header <redacted> Setup authorization token
Response 200application/json
3 fields

Setup API Triggered Successfully

FieldTypeDescription
usernamestringUsername of credential
passwordstringPassword of credential
title_provider_orderingsrequiredobjectAn object to set default title fees' provider list for states, counties and cities
default_orderingstring[]Root default ordering for title fees' provider
statesobject[]States
state_codestringState code
default_orderingstring[]Default title provider ordering for the state
countiesobject[]Counties
county_namestringCounty name
default_orderingstring[]Default title provider ordering for the county
citiesobject[]Cities
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message
Other responses

404

POST /send-invitation

Send an invitation to new customers

send-invitation-customer

Request
application/json

An example of a payload.

{
  "company_id": "xxxxxxxx",
  "email": "joedoe@test.co",
  "first_name": "Joe",
  "last_name": "Doe"
}
Response
application/json

Created.

{
  "message": "OK"
}
Parameters
1
ParameterTypeExampleDescription
x-api-key required string header <redacted> Key used to identify the API usage plan
Request bodyapplication/json
4 fields
FieldTypeDescription
company_idrequiredstringThe company identifier
emailrequiredstringCustomer email
first_namerequiredstringCustomer name
last_namestringLast Name of customer
Response 200application/json
1 fields

Created.

FieldTypeDescription
messagerequiredstringmessage
Response 400application/json
1 fields

Request data failed validation

FieldTypeDescription
messagestringMessage
Response 401application/json
1 fields

Unauthorized validation

FieldTypeDescription
messagestringMessage
Response 403application/json
2 fields

Invalid key for service

FieldTypeDescription
messagestring
urlstring
Response 500application/json
1 fields

The product has encountered an internal server error

FieldTypeDescription
messagestringError Message
Response 502application/json
1 fields

While acting as a gateway or proxy, received an invalid response from the upstream server.

FieldTypeDescription
messagestringError Message

Canonical model

Property data it reads

Errors

400401403404422500502

Type to search.