[Answer]-Django regular expression on success format

1👍

All they are saying is you can define how the success response looks. If I am understanding correctly, this is what you want:

(?P<status_code>[0-9]+)|(?P<status_message>.+)|(?P<gateway_message_id>[a-zA-Z0-9-]+)
👤Nix

Leave a comment