Delete Credential Organization
Endpoint
DELETE /apiops/projects/{projectName}/credential-organizations/{code}
Authentication
Requires a Personal API Access Token.
Header
Authorization: Bearer YOUR_TOKEN
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer {token} | Yes |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| projectName | string | Yes | Project name |
| code | string | Yes | Organization code |
Response
Success Response (204 No Content)
The organization is deleted. No response body is returned.
Error Responses
| Status | Condition |
|---|---|
| 401 | Invalid or missing token |
| 404 | Organization with the given code does not exist in the project |
| 500 | Unexpected server error |
cURL Example
curl -X DELETE \
"https://demo.apinizer.com/apiops/projects/MyProject/credential-organizations/team-alpha" \
-H "Authorization: Bearer YOUR_TOKEN"
Permissions
User must have IDENTITY + MANAGE permission in the project.