From 0909e703a68a23a0a624152e187b71d9cd536b59 Mon Sep 17 00:00:00 2001 From: Go Shoemake Date: Sat, 15 Apr 2017 03:13:29 -0700 Subject: [PATCH] API documentation fix for blocking/muting (#50) This is the same error as in https://github.com/tootsuite/documentation/commit/218a1a2444d6ed8fbb0ef8151c2ade3a19663648, originally fixed by https://github.com/tootsuite/documentation/commit/581d62ea7723b8b491c65868e99105532bec986a but (accidentally?) reverted by https://github.com/tootsuite/documentation/commit/eebeee2b76f269cd26e420cbe78467ae8f824749 --- Using-the-API/API.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Using-the-API/API.md b/Using-the-API/API.md index d42d3c35..ea6249e4 100644 --- a/Using-the-API/API.md +++ b/Using-the-API/API.md @@ -126,21 +126,21 @@ Returns an array of [Statuses](#status). POST /api/v1/accounts/:id/follow POST /api/v1/accounts/:id/unfollow -Returns the target [Relationship](#relationship). +Returns the target account's [Relationship](#relationship). #### 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). +Returns the target account's [Relationship](#relationship). #### 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). +Returns the target account's [Relationship](#relationship). #### Getting an account's relationships: