authorizeRequest method

Future authorizeRequest(
  1. String id
)
inherited

POST /api/v1/follow_requests/:id/authorize

  • authenticated (requires user)
  • write:follows

Implementation

Future<dynamic> authorizeRequest(String id) async {
  await request(
    Method.post,
    "/api/v1/follow_requests/$id/authorize",
    authenticated: true,
  );
}