You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Request a new sequence of random numbers or an existing `sequenceId`.Params:* requestId: string (alphanumerics and "_") to identify the request* sequenceLength: requested amount of random numbers returned* tag: string (alphanumerics and "_") with tag/description of this requestResponse:If the `requestId` received already exists, this response will have emptyfields except for the `sequenceId`.{ 'dateProcessed': '', 'randomSequence': [float], 'request': { 'requestId': '', 'sequenceLength': '', 'tag': '' }, 'sequenceId': ''}200: Ok400: Bad Request. Invalid input"""
"""Given a sequenceId, show the sequence and original request & reponse.Params:* sequenceId: string (alphanumerics and "_") to identify the original requestResponse:{ 'dateProcessed': '', 'randomSequence': [float], 'request': { 'requestId': '', 'sequenceLength': '', 'tag': '' }, 'sequenceId': ''}200: Ok400: Bad Request. Invalid Input404: Not Found. Requested resource (`sequenceId`) doesn't exist"""
# Example
curl --location --request POST 'http://samplestar.thomasvn.dev/api/retrieveSequence' \
--header 'Content-Type: application/json' \
--data-raw '{ "sequenceId": "seq_FsE2h1RJ04NHrN5N"}'