運賃の分割計算
経路の運賃を分割計算します。
GET /v1/{format}/course/fare/divided
parameters
※ Requiredの「△」は、特定の条件においてそのパラメータが必須になることを示します。詳しくはパラメータのDescriptionを参照してください。
Name | Type | Required | Description |
---|---|---|---|
format | string | ◯ | レスポンスのデータ形式の指定。必須 指定できる値: - xml: xml形式のデータ - json: json形式のデータ ※クエリパラメータではなくパスに値を指定します。 |
key | string | ◯ | アクセスキー。必須 |
serializeData | string | ◯ | 経路シリアライズデータ。必須 |
checkEngineVersion | string | --- | 完全な経路シリアライズデータの再現を行う場合は、シリアライズデータ作成時のエンジンバージョンと再現時のエンジンバージョンが同一かのチェックを有効にします。エンジンバージョンが異なる場合は、エラーを返します。省略可。 指定できる値: - true: チェックする - false: チェックしない Default: true |
response
Name | Description |
---|---|
ResultSet | レスポンスの最下部を表す要素 |
ResultSet / apiVersion | WebAPIバージョン |
ResultSet / engineVersion | エンジンバージョン |
ResultSet / Ticket | チケットを表す要素 |
ResultSet / Ticket / type | 種別 |
ResultSet / Ticket / Part | 分割部分要素 |
ResultSet / Ticket / Part / Point | 地点 を表す要素 |
ResultSet / Ticket / Part / Point / index | インデックス ※ jsonデータ形式のレスポンスにインデックスは含まれません。JSON形式のレスポンスデータを利用する際の注意事項 |
ResultSet / Ticket / Part / Point / Prefecture | 都道府県を表す要素 |
ResultSet / Ticket / Part / Point / Prefecture / code | 都道府県コード |
ResultSet / Ticket / Part / Point / Prefecture / Name | 都道府県の名称を表す要素 |
ResultSet / Ticket / Part / Point / Station | 駅を表す要素 |
ResultSet / Ticket / Part / Point / Station / code | 駅コード |
ResultSet / Ticket / Part / Point / Station / Name | 駅の名称を表す要素 |
ResultSet / Ticket / Part / Point / Station / Type | 交通種別を表す要素 |
ResultSet / Ticket / Part / Point / Station / Yomi | 駅の読みかなを表す要素 |
ResultSet / Ticket / Part / Price | 金額を表す要素 |
ResultSet / Ticket / Part / Price / kind | 金額種別 - Fare: 運賃 |
ResultSet / Ticket / Part / Price / Oneway | 片道を表す要素 |
example
GET /v1/xml/course/fare/divided?key=アクセスキーを入力してください&serializeData=SHlUczAxLjAwLjA0rAQAAAAAJFEzAQEAAQAAAAAACAABQAACAAADAAAAAAAAAAIA41UAANVYAACPWAAAAAAAAAoAEQAAAADBAAAAByRRMwH__________woAEQAAAADcAAAAASRRMwH__________wIAAQABAAEAAQABAAAAAAAAAA**--T3221233232319:F3321122120:A23121141:--4a0f8dc25969e0095938b81c1837c54a15bdab3c
<?xml version="1.0" encoding="UTF-8"?>
<ResultSet apiVersion="1.14.0.0" engineVersion="201404_01a">
<Ticket type="fare">
<Part>
<Point index="1">
<Prefecture code="11">
<Name>埼玉県</Name>
</Prefecture>
<Station code="21987">
<Name>大宮(埼玉県)</Name>
<Yomi>おおみや</Yomi>
<Type>train</Type>
</Station>
</Point>
<Point index="2">
<Prefecture code="13">
<Name>東京都</Name>
</Prefecture>
<Station code="22530">
<Name>浮間舟渡</Name>
<Yomi>うきまふなど</Yomi>
<Type>train</Type>
</Station>
</Point>
<Price kind="Fare">
<Oneway>210</Oneway>
</Price>
</Part>
<Part>
<Point index="1">
<Prefecture code="13">
<Name>東京都</Name>
</Prefecture>
<Station code="22530">
<Name>浮間舟渡</Name>
<Yomi>うきまふなど</Yomi>
<Type>train</Type>
</Station>
</Point>
<Point index="2">
<Prefecture code="13">
<Name>東京都</Name>
</Prefecture>
<Station code="22671">
<Name>高円寺</Name>
<Yomi>こうえんじ</Yomi>
<Type>train</Type>
</Station>
</Point>
<Price kind="Fare">
<Oneway>290</Oneway>
</Price>
</Part>
</Ticket>
</ResultSet>
GET /v1/json/course/fare/divided?key=アクセスキーを入力してください&serializeData=SHlUczAxLjAwLjA0rAQAAAAAJFEzAQEAAQAAAAAACAABQAACAAADAAAAAAAAAAIA41UAANVYAACPWAAAAAAAAAoAEQAAAADBAAAAByRRMwH__________woAEQAAAADcAAAAASRRMwH__________wIAAQABAAEAAQABAAAAAAAAAA**--T3221233232319:F3321122120:A23121141:--4a0f8dc25969e0095938b81c1837c54a15bdab3c
{
"ResultSet": {
"apiVersion": "1.14.0.0",
"engineVersion": "201404_01a",
"Ticket": {
"type": "fare",
"Part": [
{
"Point": [
{
"Prefecture": {
"code": "11",
"Name": "埼玉県"
},
"Station": {
"code": "21987",
"Name": "大宮(埼玉県)",
"Yomi": "おおみや",
"Type": "train"
}
},
{
"Prefecture": {
"code": "13",
"Name": "東京都"
},
"Station": {
"code": "22530",
"Name": "浮間舟渡",
"Yomi": "うきまふなど",
"Type": "train"
}
}
],
"Price": {
"kind": "Fare",
"Oneway": "210"
}
},
{
"Point": [
{
"Prefecture": {
"code": "13",
"Name": "東京都"
},
"Station": {
"code": "22530",
"Name": "浮間舟渡",
"Yomi": "うきまふなど",
"Type": "train"
}
},
{
"Prefecture": {
"code": "13",
"Name": "東京都"
},
"Station": {
"code": "22671",
"Name": "高円寺",
"Yomi": "こうえんじ",
"Type": "train"
}
}
],
"Price": {
"kind": "Fare",
"Oneway": "290"
}
}
]
}
}
}