Merge branch 'wip-documentation' into 'master'
Add return value example to ssh key creation See merge request !307
This commit is contained in:
commit
3af2ac9df0
1 changed files with 25 additions and 0 deletions
|
@ -322,6 +322,31 @@ Parameters:
|
||||||
- `title` (required) - new SSH Key's title
|
- `title` (required) - new SSH Key's title
|
||||||
- `key` (required) - new SSH key
|
- `key` (required) - new SSH key
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"created_at": "2015-01-21T17:44:33.512Z",
|
||||||
|
"key": "ssh-dss AAAAB3NzaC1kc3MAAACBAMLrhYgI3atfrSD6KDas1b/3n6R/HP+bLaHHX6oh+L1vg31mdUqK0Ac/NjZoQunavoyzqdPYhFz9zzOezCrZKjuJDS3NRK9rspvjgM0xYR4d47oNZbdZbwkI4cTv/gcMlquRy0OvpfIvJtjtaJWMwTLtM5VhRusRuUlpH99UUVeXAAAAFQCVyX+92hBEjInEKL0v13c/egDCTQAAAIEAvFdWGq0ccOPbw4f/F8LpZqvWDydAcpXHV3thwb7WkFfppvm4SZte0zds1FJ+Hr8Xzzc5zMHe6J4Nlay/rP4ewmIW7iFKNBEYb/yWa+ceLrs+TfR672TaAgO6o7iSRofEq5YLdwgrwkMmIawa21FrZ2D9SPao/IwvENzk/xcHu7YAAACAQFXQH6HQnxOrw4dqf0NqeKy1tfIPxYYUZhPJfo9O0AmBW2S36pD2l14kS89fvz6Y1g8gN/FwFnRncMzlLY/hX70FSc/3hKBSbH6C6j8hwlgFKfizav21eS358JJz93leOakJZnGb8XlWvz1UJbwCsnR2VEY8Dz90uIk1l/UqHkA= loic@call",
|
||||||
|
"title": "ABC",
|
||||||
|
"id": 4
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Will return created key with status `201 Created` on success. If an
|
||||||
|
error occurs a `400 Bad Request` is returned with a message explaining the error:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"message": {
|
||||||
|
"fingerprint": [
|
||||||
|
"has already been taken"
|
||||||
|
],
|
||||||
|
"key": [
|
||||||
|
"has already been taken"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
## Add SSH key for user
|
## Add SSH key for user
|
||||||
|
|
||||||
Create new key owned by specified user. Available only for admin
|
Create new key owned by specified user. Available only for admin
|
||||||
|
|
Loading…
Reference in a new issue