Message Flow


sequenceDiagram
    participant C as REST Client
    participant M as Mist Cloud
    participant AP as Mist AP

    # user login api call
    C->>+M: User invokes the "login" API
    Note over M: User auth
    M->>-C: Auth token
    Note over C: Client saves<br>auth token

    # more api calls
    C->>+M: API request
    Note over M: Process API request
    M->>AP: Update AP Config
    Note over AP: Process Config<br>update
    M->>-C: API response