Requires the role: | manager |
DELETE | /users/{Id}/roles/unassign |
---|
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports Infrastructure.Api.Interfaces.ServiceOperations.UserAccounts
Imports Infrastructure.Api.Interfaces.ServiceOperations
Imports Application.Interfaces.Resources
Namespace Global
Namespace Application.Interfaces.Resources
Public Enum AccountStatus
Shadowed
Registered
End Enum
Public Partial Class UserAccount
Implements IIdentifiableResource
Public Sub New()
Roles = New List(Of String)
End Sub
Public Overridable Property Name As UserAccountName
Public Overridable Property DisplayName As String
Public Overridable Property Email As String
Public Overridable Property Roles As List(Of String)
Public Overridable Property Status As AccountStatus
Public Overridable Property DefaultOrganisationId As String
Public Overridable Property Id As String
End Class
Public Partial Class UserAccountName
Public Overridable Property FirstName As String
Public Overridable Property LastName As String
End Class
End Namespace
Namespace Infrastructure.Api.Interfaces.ServiceOperations
Public Partial Class DeleteOperationUnTenanted(Of TResponse)
Implements IDelete
End Class
End Namespace
Namespace Infrastructure.Api.Interfaces.ServiceOperations.UserAccounts
Public Partial Class AssignRolesResponse
Public Overridable Property ResponseStatus As ResponseStatus
Public Overridable Property UserAccount As UserAccount
End Class
Public Partial Class UnassignRolesRequest
Inherits DeleteOperationUnTenanted(Of AssignRolesResponse)
Public Sub New()
Roles = New List(Of String)
End Sub
Public Overridable Property Id As String
Public Overridable Property Roles As List(Of String)
End Class
End Namespace
End Namespace
VB.NET UnassignRolesRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
DELETE /users/{Id}/roles/unassign HTTP/1.1 Host: staging-api.billiecart.com.au Accept: text/jsv
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { responseStatus: { errorCode: String, message: String, stackTrace: String, errors: [ { errorCode: String, fieldName: String, message: String, meta: { String: String } } ], meta: { String: String } }, userAccount: { name: { firstName: String, lastName: String }, displayName: String, email: String, roles: [ String ], status: Shadowed, defaultOrganisationId: String, id: String } }