Updated on 2023-09-27 GMT+08:00

Interface for Deleting Dialog ID Binding Relationships

Description

This interface is used to delete a dialog ID binding.

Interface Method

The request method must be set to POST.

URL

https://IP:PORT/oifde/rest/api/deletenavigationinfo

Request

Table 1 Parameters in the request body

Parameter

Type

Position

Mandatory

Description

tenantId

String

body

Yes

Tenant ID.

accessIdList

String[]

body

Yes

List of dialog binding relationship IDs in an array. Each ID is a string.

accessCodeList

String[]

body

No

List of dialog binding relationship codes.

authToken

String

body

Yes

Authentication token.

For details, see C3 OIAP Interface Authentication.

Response

Parameter

Type

Position

Mandatory

Description

errorCode

Integer

body

No

Error code.

If the operation is successful, no error code is returned.

If the operation fails, see Common Error Codes.

errorMsg

String

body

No

Error description.

Example

  • Request
    {
       "tenantId": "tenant001",
       "accessIdList": ["10001","..." ],
       "accessCodeList": ["10086","..." ],
       "authToken": "0***************************" 
    }
  • Response

    Deletion succeeded.

    No response body

    Deletion failed.

    {
        "errorCode" : 100000, // Error code, which is an integer. The status code 200 indicates success.
        "errorMsg" : ""
    }