AOTG API: Delete Debtor: Difference between revisions

 
(14 intermediate revisions by the same user not shown)
Line 1:
==Draft==
 
==Delete Debtor==
Delete a specific Debtor.<br/>
*'''debtorId''' is a unique identifier created in AOTG.
*See [[AOTG API: Get List of Debtor#Response_From_Result|Get List of Debtor]] on how to obtain '''Id''' (that is created in AOTG).
{{AOTGApiMethodsSpec|DELETE|/api/public/v1/Debtor/{debtorId} |Params=None}}
 
==API Request Flow==
[[File:AOTGApiCompleteOrFailFlow.png|link=]]
#Submit Delete request of a debtor with an Id of the debtor
#Check the successful request status, if the action is '''Completed''' or '''Failed'''.
#To get the failed reason, use RESULT method to retrieve the message of completed or failed.
 
==Code Snippets==
*Add header of '''"SOTC_AUTH"''', and assign value of '''AccessToken'''.
{{AOTGApiCodeSnippetTab
|PHPHttp=
Line 78 ⟶ 83:
200 OK
====Response Successful Body====
*'''Id''' and '''Name''' can be used to retrieve the status and reason of the failed status.
<syntaxhighlight lang="json-object" highlight="2,3">
{
Line 159 ⟶ 165:
}}
 
====Response Status====
"RequestId": {{AOTGResponseStatus|"f0268032-c161-4548-a74a-adb7143274a6",}}
200 OK
=====Completed status=====
*'''Completed''' status Indicates that the DELETE request has been performed and succeeded.
<syntaxhighlight lang="json-object">
{
"RequestId": "f0268032-c161-4548-a74a-adb7143274a6",
"Status": "Completed"
}
</syntaxhighlight>
=====Failed status=====
*'''Faield''' status Indicates that the DELETE request has been performed but has error.
<syntaxhighlight lang="json-object">
{
"RequestId": "f0268032-c161-4548-a74a-adb7143274a6",
"Status": "Failed"
}
</syntaxhighlight>
 
 
==Use RESULT method to get the failed reason of DELETE request==
===Code Snippets===
 
{{AOTGApiCodeSnippetTab
|PHPHttp=
Line 246 ⟶ 235:
}}
 
<br/>
====Response Successful from HTTP RESULT====
200 OK
====Result of Failed reason====
=====Debtor record not found=====
<tabber>
Body=
Line 285 ⟶ 275:
</tabber>
 
=====Account in use, can't delete debtor=====
<tabber>
Body=