Created
October 23, 2015 16:12
-
-
Save muojp/2474a27593ba1fc4fa18 to your computer and use it in GitHub Desktop.
SORACOM API 15/10/23のドキュメント改訂差分
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
paths: { | |
/subscribers: { | |
get: { | |
parameters: [ | |
... | |
... | |
... | |
{ | |
- description: "検索対象にするstatus。`|`で区切って複数指定することができる。指定可能な値の一覧はこちら" | |
+ description: "検索対象にするstatus。`|`で区切って複数指定することができる。指定可能な値の一覧は以下のとおり: `active`, `inactive`, `ready`, `instock`, `shipped`, `suspended`, `terminated`" | |
} | |
{ | |
- description: "検索対象にするspeed_class。`|`で区切って複数指定することができる。指定可能な値の一覧はこちら" | |
+ description: "検索対象にするspeed_class。`|`で区切って複数指定することができる。指定可能な値の一覧は以下のとおり: `s1.minimum`, `s1.slow`, `s1.standard`, `s1.fast`" | |
} | |
... | |
... | |
] | |
} | |
} | |
/subscribers/{imsi}/tags/{tag_name}: { | |
delete: { | |
parameters: [ | |
... | |
{ | |
- description: "削除対象のタグ名" | |
+ description: "削除対象のタグ名(URL の Path の一部になるので、パーセントエンコーディングを施す。JavaScript なら encodeURIComponent() したものを指定する)" | |
} | |
] | |
} | |
} | |
/groups/{group_id}/configuration/{namespace}/{name}: { | |
delete: { | |
parameters: [ | |
... | |
... | |
{ | |
- description: "削除対象のパラメータ名" | |
+ description: "削除対象のパラメータ名(URL の Path の一部になるので、パーセントエンコーディングを施す。JavaScript なら encodeURIComponent() したものを指定する)" | |
} | |
] | |
} | |
} | |
/groups/{group_id}/tags/{tag_name}: { | |
delete: { | |
parameters: [ | |
... | |
{ | |
- description: "削除対象のタグ名" | |
+ description: "削除対象のタグ名(URL の Path の一部になるので、パーセントエンコーディングを施す。JavaScript なら encodeURIComponent() したものを指定する)" | |
} | |
] | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment