export const apiSubmitAccountNote = (id: string, value: string) =>
  apiRequest<ApiRelationshipJSON>('post', `v1/accounts/${id}/note`, {
    comment: value,
  });