非同期処理のエラー情報を取得する
Description
QueryStringに設定された入力情報をもとに非同期処理のエラー情報を検索します。
Method
GET
共通リクエストヘッダーを参照してください。
Argument
Name |
Type |
Required |
Length(Long/Decimalの場合はValue) |
URI |
Query String |
Description |
receipt_code |
String |
Yes |
15 |
- |
○ |
受付ID エラー情報を検索する単位(受付ID) |
URI
Sample request uri
/API/v2/api/asyncerror?receipt_code=000000000000100
Parameters in request body
なし
Return Codes
Code |
Description |
200 |
正常終了 |
403 |
アクセス不可 |
404 |
対象なし |
500 |
業務不整合 |
特筆する返却値はありません。
Response Parameter
共通仕様はこちらを参照してください。
example
{
"asynchronous_process_id": "000000000000100",
"receipt_code": "000000000000100",
"result_information": {
"result": "OK"
},
"async_processing_error_information_list": [
{
"async_process_error_information": "SCID-BSS0000037,000000000000962,100,,20170901,100000000000,20170901,180000000000,0000000000,000002562,K000000001,,,,,201709,MSGJ00018 【計算要素存在チェック処理】【null】【null】利用要素1~5の何れかが一致しません。"
}
]
}
Parameters
Name |
Type |
Required |
Length
(Long/Decimalの場合はValue) |
Description |
asynchronous_process_id |
String |
Yes |
15 |
非同期処理ID
非同期状態を一意に識別するID |
receipt_code |
String |
Yes |
15 |
受付ID
検索したエラー情報の単位(受付ID) |
result_information |
object |
|
- |
結果情報 |
|
result |
String |
No |
2 |
結果
OKまたはNGを返却 |
detailed_result |
String |
No |
1 ~ 256 |
結果詳細
NGの場合、エラー内容を返却 |
async_processing_error_information_list |
Array |
|
- |
非同期処理エラー情報リスト |
|
async_process_error_information |
String |
Yes |
1 ~ 2048 |
非同期処理エラー情報
エラー情報を1行ごとに保持する |
Top