| DELETE | /users/{userId} | Disable the external user if exists and is not disabled |
|---|
import 'package:servicestack/servicestack.dart';
class DeleteUserResponse implements IConvertible
{
DeleteUserResponse();
DeleteUserResponse.fromJson(Map<String, dynamic> json) : super();
fromMap(Map<String, dynamic> json) {
return this;
}
Map<String, dynamic> toJson() => {};
getTypeName() => "DeleteUserResponse";
TypeContext? context = _ctx;
}
class DeleteUser implements IConvertible
{
/**
* User's UserID
*/
// @ApiMember(Description="User's UserID", IsRequired=true)
String? userId;
DeleteUser({this.userId});
DeleteUser.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
userId = json['userId'];
return this;
}
Map<String, dynamic> toJson() => {
'userId': userId
};
getTypeName() => "DeleteUser";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'dev_api_booster.richemont.com', types: <String, TypeInfo> {
'DeleteUserResponse': TypeInfo(TypeOf.Class, create:() => DeleteUserResponse()),
'DeleteUser': TypeInfo(TypeOf.Class, create:() => DeleteUser()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
DELETE /users/{userId} HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{}