GET v1/files/tips?id={id}&dark={dark}

Get HTML for pacing tips depending on passed in parameter

Request Information

URI Parameters

NameDescriptionType
id

ID of the person the pacing tips is needed for

integer
dark

optional, set to true for dark mode

boolean

Body Parameters

No parameters.

Response Information

Response Codes

Status CodeDescription
200 OK

HTML content in the response body

404 NotFound

No pacing tips matched the passed in term

Resource Description

HTML content of the matching pacing tips

No parameters.

Response Formats

text/html

Sample:
<!DOCTYPE html>
<html>
    <head>
        <meta name="viewport" content="width=device-width" />
        <title>Pacing Tips</title>
        <style>
        ul.Do, ul.DoNot {
            position: relative;
            list-style: none;
            margin-left: 0;
            padding-left: 1.2em;
        }

        ul.Do li:before {
            content: "\2713";
            position: absolute;
            left: 0;
        }

        ul.DoNot li:before {
            content: "\2717";
            position: absolute;
            left: 0;
        }

        .i {
            font-style: italic;
        }
    </style>
    </head>
    <body>
        <div>
            <p>
                Will Value
            </p>
            <ul>
                <li>Efficiency</li>
                <li>Reliability</li>
                <li>Dependability</li>
                <li>Conclusion</li>
            </ul>
            <p>
                How to best communicate with a 
                <i>Concluder-Producer</i>
            </p>
            <ul class="Do">
                <li>Be structured</li>
                <li>Give notice of proposed changes</li>
                <li>Be practical</li>
                <li>Stick to your word</li>
                <li>Keep to deadlines</li>
                <li>Focus on results</li>
            </ul>
            <ul class="DoNot">
                <li>Don't change your mind too often</li>
                <li>Don't 'waffle'</li>
                <li>Don't be unreliable</li>
            </ul>
        </div>
        <hr />
        <div>
            <p>
            How to best communicate with an
            
                <b>Extrovert Practical Beliefs Structured</b>
                <i>Concluder-Producer</i>
            </p>
            <ul class='Do'>
                <li>Be prepared to talk about ideas</li>
                <li>Let them chat</li>
                <li>Reflect their enthusiasm</li>
                <li>Allow variety</li>
            </ul>
            <ul class='Do'>
                <li>Be specific</li>
                <li>Pay attention to the details</li>
                <li>Focus on tangibles</li>
                <li>Be realistic</li>
            </ul>
            <ul class='Do'>
                <li>Consider emotions</li>
                <li>Be empathetic</li>
                <li>Value personal relationships</li>
                <li>Be mindful of their beliefs</li>
            </ul>
            <ul class='Do'>
                <li>Value closure</li>
                <li>Get to the point</li>
                <li>Keep deadlines</li>
                <li>Stick to the plan</li>
            </ul>
        </div>
    </body>
</html>