Simply put, I want to refer to the 1C POST configuration or GET request via Android with the java language and in the http service to get the fields sent by the request in order to create a document based on the data received.

    1 answer 1

    If you write to 1c yourself - then look at the syntax helper object http Service Request, which flies as a parameter to the methods of the http service. Three types of parameters can be pulled out of it, some are headers, others are exactly parameters (Query string, ... / object1? Param1 = 4 & param2 = 3, most likely you need them if you use retrofit and @Query annotation for the parameter, property query Parameters Query), the third is the parameters specified in the url pattern (/ myservice / {type} / {number}, the query property Parameters of the URL, if you use the @Path annotation in the retrofit).