Deletes AP Onboarding Profiles
Since Product Version: 3.4
Resource Information
Rate Limiting? |
Yes |
Sorting? |
No |
Paging? |
No |
Filtering? |
No |
Group Filtering? |
No |
Aggregation? |
No |
Response Formats |
xml json |
User Group |
NBI Write |
HTTP Methods |
DELETE |
DevNet Discussions
Resource URL
/webacs/api/v4/op/apOnboarding/profileRequest Payload Parameters
Attribute | Description |
---|---|
profileIds Long[] |
Profile IDs |
Response Parameters
Attribute | Description |
---|---|
operation ApOnboardingProfileOperation |
Operation type Allowed values: |
Result list |
Sample Payloads
Sample payloads are for information only. They are automatically generated and the values included may not be representative of actual valid data values.
Sample XML Request Payload
https://localhost/webacs/api/v4/op/apOnboarding/profile
<?xml version="1.0" ?>
<profileIds>
<profileIds>
<profileId>15</profileId>
<profileId>25</profileId>
</profileIds>
</profileIds>
Sample JSON Request Payload
https://localhost/webacs/api/v4/op/apOnboarding/profile.json
{
"profileIds" : {
"profileIds" : {
"profileId" : [ 15, 25 ]
}
}
}
Sample XML Response Payload
https://localhost/webacs/api/v4/op/apOnboarding/profile
<?xml version="1.0" ?>
<mgmtResponse responseType="operation" requestUrl="https://localhost/webacs/api/v4/op/apOnboarding/profile" rootUrl="https://localhost/webacs/api/v4/op">
<apOnboardingProfileOpResults>
<operation>ADD_PROFILES</operation>
<results>
<result>
<key>String value</key>
<message>String value</message>
<success>true</success>
</result>
<result>
<key>Another string value</key>
<message>Another string value</message>
<success>false</success>
</result>
</results>
</apOnboardingProfileOpResults>
</mgmtResponse>
Sample JSON Response Payload
https://localhost/webacs/api/v4/op/apOnboarding/profile.json
{
"mgmtResponse" : {
"@requestUrl" : "https://localhost/webacs/api/v4/op/apOnboarding/profile",
"@responseType" : "operation",
"@rootUrl" : "https://localhost/webacs/api/v4/op",
"apOnboardingProfileOpResults" : [ {
"operation" : "ADD_PROFILES",
"results" : {
"result" : [ {
"key" : "String value",
"message" : "String value",
"success" : true
}, {
"key" : "Another string value",
"message" : "Another string value",
"success" : false
} ]
}
} ]
}
}