action apptigent_date_time_info { label: "DateTime - Get date and time information" description: "Retrieve useful date and time information, such as day of year, total seconds and ticks" provider: apptigent method: POST path: "/DateTimeInfo" encoding: json input: { type: "object" required: ["culture", "input"] properties: { culture: { type: "string" description: "Language culture" enum: ["en-US", "af-ZA", "ar-AE", "ar-BH", "ar-DZ", "ar-EG", "ar-IQ", "ar-JO", "ar-KW", "ar-LB", "ar-LY", "ar-MA", "ar-OM", "ar-QA", "ar-SA", "ar-SY", "ar-TN", "ar-YE", "az-AZ", "be-BY", "bg-BG", "bs-BA", "ca-ES", "cs-CZ", "cy-GB", "da-DK", "de-AT", "de-CH", "de-DE", "de-LI", "de-LU", "el-GR", "en-AU", "en-BZ", "en-CA", "en-CB", "en-GB", "en-IE", "en-JM", "en-NZ", "en-PH", "en-TT", "en-ZA", "en-ZW", "es-AR", "es-BO", "es-CL", "es-CO", "es-CR", "es-DO", "es-EC", "es-ES", "es-GT", "es-HN", "es-MX", "es-NI", "es-PA", "es-PE", "es-PR", "es-PY", "es-SV", "es-UY", "es-VE", "et-EE", "eu-ES", "fa-IR", "fi-FI", "fo-FO", "fr-BE", "fr-CA", "fr-CH", "fr-FR", "fr-LU", "fr-MC", "gl-ES", "gu-IN", "he-IL", "hi-IN", "hr-BA", "hr-HR", "hu-HU", "hy-AM", "id-ID", "is-IS", "it-CH", "it-IT", "ja-JP", "ka-GE", "kk-KZ", "kn-IN", "ko-KR", "ky-KG", "lt-LT", "lv-LV", "mi-NZ", "mn-MN", "mr-IN", "ms-BN", "ms-MY", "mt-MT", "nl-BE", "nl-NL", "nn-NO", "ns-ZA", "pa-IN", "pl-PL", "ps-AR", "pt-BR", "pt-PT", "ro-RO", "ru-RU", "sa-IN", "sk-SK", "sl-SI", "sq-AL", "sr-BA", "sr-SP", "sv-FI", "sv-SE", "sw-KE", "ta-IN", "te-IN", "th-TH", "tl-PH", "tn-ZA", "tr-TR", "uk-UA", "ur-PK", "uz-UZ", "vi-VN", "zh-CN", "zh-HK", "zh-MO", "zh-SG", "zh-TW", "zu-ZA"] } input: { type: "string" description: "Source date and time" } } } output: { type: "object" properties: { DayOfWeek: { type: "number" description: "DayOfWeek" } DayOfYear: { type: "number" description: "DayOfYear" } MinutesInDay: { type: "number" description: "MinutesInDay" } SecondsInDay: { type: "number" description: "SecondsInDay" } Ticks: { type: "number" description: "Ticks" } WeekOfYear: { type: "number" description: "WeekOfYear" } } } }