api.apiClient.post(`/api/consultants`, payload, { crossDomain: true })
      .then(response => {
        commit('CREATE_CONSULTANT', response.data)
        Notify.create({
          message: payload.name + ' was created with ' + payload.allocation * 100 + '% allocation',