Skip to content

Commit

Permalink
Correct API accounts actions http method
Browse files Browse the repository at this point in the history
  • Loading branch information
R0ckweb committed Apr 10, 2017
1 parent 3138d5b commit 581d62e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Using-the-API/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,22 +110,22 @@ Returns an array of [Statuses](#status).

#### Following/unfollowing an account:

GET /api/v1/accounts/:id/follow
GET /api/v1/accounts/:id/unfollow
POST /api/v1/accounts/:id/follow
POST /api/v1/accounts/:id/unfollow

Returns the target [Account](#account).

#### Blocking/unblocking an account:

GET /api/v1/accounts/:id/block
GET /api/v1/accounts/:id/unblock
POST /api/v1/accounts/:id/block
POST /api/v1/accounts/:id/unblock

Returns the target [Account](#account).

#### Muting/unmuting an account:

GET /api/v1/accounts/:id/mute
GET /api/v1/accounts/:id/unmute
POST /api/v1/accounts/:id/mute
POST /api/v1/accounts/:id/unmute

Returns the target [Account](#account).

Expand Down

0 comments on commit 581d62e

Please sign in to comment.