action britbox_generate_nonce { label: "generateNonce" description: "Generate a new account nonce.\n\nA nonce may be required to help sign a response from a third party\nservice which will be passed back to these services.\n\nFor example a Facebook single-sign-on request initiated by a client\napplication may first get a nonce from here to include in the request.\nFacebook will then include the nonce in the auth token it issues. This\ntoken can be passed back to our services and the nonce checked for validity.\n" provider: britbox method: GET path: "/account/nonce" encoding: json output: { type: "object" required: ["value"] properties: { value: { type: "string" description: "The nonce value." } } additionalProperties: false } }