create(body: { url: string }): Promise<any> {
    const url = `${this.configuration.routes.configWebhooks}`;
    return Validation.validateCreateWebhook(body)
      .then(() => super.postRequest(url, body));
  }