Unlink Outlet
By using this method, you can undo the linking explained in previous section. The unlink process should be initiated when the merchant's partnership ends.
caution
- This API is designed to undo the linking of the user's primary outlet only. It may pose potential issues for multi-outlet merchants.
- To know the user's primary outlet, please refer Token Info API.
- We suggest you to use unlink outlet by Merchant ID. Please refer Unlink Outlet by Merchant ID.
DELETE /integrations/partner/v1/outlet-link
Sample Request
Sample Request
curl -X DELETE https://api.partner-sandbox.gobiz.co.id/integrations/partner/v1/outlet-link \
-H 'Authorization: Bearer {access-token}'
Sample Response - 200 Success
Sample Response
{
"success": true,
"data": {}
}
Response - 200 Success
JSON Attribute | Description | Type |
---|---|---|
success | Status of the request. Value true indicates successful submission of the request. | Boolean |
data | Details metadata if any. | Object |
note
- To perform this operation, you must have one of
["owner", "admin", "manager"]
role and authenticated usinggo_auth_authorization_code(partner:outlet:read)
. .* Possible error response is401
. Please refer Error Glossary.