ISC.ApiResponse 1.0.0

dotnet add package ISC.ApiResponse --version 1.0.0
                    
NuGet\Install-Package ISC.ApiResponse -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ISC.ApiResponse" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ISC.ApiResponse" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="ISC.ApiResponse" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ISC.ApiResponse --version 1.0.0
                    
#r "nuget: ISC.ApiResponse, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package ISC.ApiResponse@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ISC.ApiResponse&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=ISC.ApiResponse&version=1.0.0
                    
Install as a Cake Tool

ISC.ApiResponse

ISC.ApiResponse is a lightweight .NET library for standardizing API responses across services.

It helps you return a consistent response shape for:

  • Success results
  • Error results
  • Paginated results

Why use this package?

  • Keep response contracts consistent across all APIs
  • Reduce duplicated response-building code in controllers/services
  • Include metadata (requestId, traceId, timestamp) in every response
  • Support pagination metadata automatically when using paged data models

Target framework

  • .NET 8 (net8.0)

Installation

dotnet add package ISC.ApiResponse

Response structure

Typical response format:

{
  "success": true,
  "data": {},
  "error": null,
  "status": "OK",
  "meta": {
    "requestId": "string",
    "traceId": "string",
    "timestamp": "2026-01-01T00:00:00Z",
    "pagination": null
  }
}

Usage

1) Success response

using ISC.ApiResponse.Models;

var user = new { Id = 1, Name = "Alice" };
var response = ResponseDTO<object>.Ok(user);

// response.Success == true
// response.Status == "OK"

2) Error response

using ISC.ApiResponse.Models;

var response = ResponseDTO<object>.Fail(
    code: "USER_NOT_FOUND",
    message: "The requested user does not exist."
);

// response.Success == false
// response.Error.Code == "USER_NOT_FOUND"

3) Success response with trace identifier

using ISC.ApiResponse.Models;

var payload = new { Message = "Operation completed" };
var response = ResponseDTO<object>.OkResult(payload, traceIdentifier: HttpContext.TraceIdentifier);

4) Paginated response

using ISC.ApiResponse.Models;

var items = new List<string> { "A", "B", "C" };
var paged = new PagedResponse<string>(
    items: items,
    totalCount: 50,
    page: 1,
    limit: 10
);

var response = ResponseDTO<PagedResponse<string>>.OkResult(paged);

// response.Meta.Pagination is populated automatically

Core types

  • ResponseDTO<T>: Standard wrapper for API responses
  • ApiError: Error code and message
  • ApiMeta: Metadata (requestId, traceId, timestamp, pagination)
  • PaginationMeta: Pagination details
  • PagedResponse<T>: Standard paged list model

Notes

  • ApiMeta.Create() generates new IDs if HttpContext.Items["RequestId"] / HttpContext.Items["TraceId"] are not available.
  • ResponseDTO<T>.OkResult(...) detects IPagedResult data and fills pagination metadata automatically.

License

This package is provided as-is for internal or public API standardization.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 43 4/1/2026