| GET | /albums | ||
|---|---|---|---|
| GET | /albums/{AlbumId} |
#![allow(
dead_code,
non_camel_case_types,
non_snake_case,
clippy::upper_case_acronyms
)]
use serde::{Deserialize, Serialize};
use serde_json::Value;
use servicestack::*;
use std::collections::HashMap;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
#[serde(default)]
pub struct Albums {
#[serde(rename = "albumId")]
pub album_id: i64,
// Required
pub title: String,
#[serde(rename = "artistId")]
pub artist_id: i64,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
#[serde(default)]
pub struct QueryAlbums {
#[serde(flatten)]
pub query_db: QueryDb,
#[serde(rename = "albumId")]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub album_id: Option<i64>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
#[serde(default)]
pub struct Todo {
pub id: i64,
pub text: String,
#[serde(rename = "isFinished")]
pub is_finished: bool,
}
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.
GET /albums HTTP/1.1 Host: blazor-gallery.servicestack.net Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
offset: 0,
total: 0,
results:
[
{
albumId: 0,
title: String,
artistId: 0
}
],
meta:
{
String: String
},
responseStatus:
{
errorCode: String,
message: String,
stackTrace: String,
errors:
[
{
errorCode: String,
fieldName: String,
message: String,
meta:
{
String: String
}
}
],
meta:
{
String: String
}
}
}