Welcome to the rtbrick upload service!

You can upload a file related to a ticket.
a) Via the upload form:
0%
b) Via curl variant 1:
        
        curl --upload-file <<file>> https://upload.rtbrick.com/<<ticket>>/ | cat
        
        
c) Via curl variant 2:
        
        curl --location --request POST 'https://upload.rtbrick.com' \
        --form 'ticket=<<ticket>>' \
        --form 'file=@<<file>>' \
        | cat