create(afterCreate, errorHandler) {
    let path = this.singular ? this.singularPath() : this.collectionPath()
    return this._create_or_update('POST', path, afterCreate, errorHandler)
  }