I’m not familiar with MAVROS, but it seems like your command was sent successfully and received a MAV_RESULT_FAILED acknowledgement from the autopilot, indicating there’s some issue in your current vehicle state preventing the command from being accepted.
Searching for what you sent, 183 is MAV_CMD_DO_SET_SERVO, and you’re commanding servo 1 to a PWM of 1400. Generally the first set of servo outputs are assigned as motor outputs, in which case servo commands cannot operate on them. If you need direct servo control of an output like this then the corresponding SERVOn_FUNCTIONneeds to be set to disabled. Alternatively it could be set to an RCINy channel, or RCPassThru if you want to control them with RC channel values or RC overrides.
Note that assigning a motor output to not a motor means the normal motor controls and safety requirements (arming, failsafes, etc) will no longer apply, so only do this if you know what you’re doing, and do so with care.