# Creates new day feedback ('How was your day/sleep?') Each day, the user receives two questions in the app, under the Now tab. ### "How was your day?" question This question appears once each day, when you open the app after the theoretical end of the workday (between 5 p.m. and midnight). * Possible values: very bad, bad, okay, good, very good. ### "How was your sleep?" question This question appears once each day, when you open the app after the theoretical end of the night of sleep (between 4 a.m. and midday). * Possible values: very bad, bad, okay, good, very good. Endpoint: POST /v1/day-feedback Version: 0.9.0 Security: bearer ## Request fields (application/json): - `datetime` (string, required) - `type` (number, required) The type of subjective input. - For SubjectiveInputType.DAY: Represents the "How was your day?" question. This question appears once each day, when the user opens the app after the theoretical end of the workday (between 5 p.m. and midnight). - For SubjectiveInputType.SLEEP: Represents the "How was your sleep?" question. This question appears once each day, when the user opens the app after the theoretical end of the night of sleep (between 4 a.m. and midday). Enum: 0, 1, 2, 3, 4, 5, 6 - `value` (number, required) The value associated with the subjective input. For "How was your day?" and "How was your sleep?" questions, possible values are: - 1: Very bad - 2: Bad - 3: Okay - 4: Good - 5: Very good - `tag` (number, required) A tag associated with the subjective input. For day-feedback and feelings, this tag should be 0 and is not used. - `note` (string) ## Response 201 fields ## Response 400 fields