RESTful API 共通レスポンスエラー

バージョン指定文字列が不正もしくはそのバージョンがサポートされていない

{
    "status": 400,
    "message": "Version 'バージョン' is not supported."
}

環境変数「api_methods」によってそのスコープに対して許可されていないメソッド

{
    "status": 403,
    "Method 'メソッド名' for model 'モデル名' not allowed in this scope."
}

環境変数「api_allow_login」指定がない時に authentication メソッドへアクセスした

{
    "status": 403,
    "Authentication not allowed."
}

指定したモデルが存在しない

{
    "status": 404,
    "Model 'モデル名' does not exist."
}

そのモデルで「APIを有効化」が指定されていない

{
    "status": 406,
    "API use of model 'モデル名' is not allowed."
}

指定したオブジェクトが存在しないか、オブジェクトIDが指定されていない

{
    "status": 405,
    "Method '%s' is not supported."
}

指定したスコープ IDが API利用を許可していない

{
    "status": 403,
    "WorkSpace ID:'スコープID' does not support API."
}

認証が必要なリクエストに対して認証なし、もしくは認証に成功しなかった

{
    "status": 403,
    "This method requires login."
}

許可されないリクエストメソッド

{
    "status": 400,
    "message": "Method リクエストメソッド not allowed."
}