Start New Journey
To integrate it with OneID® you have will have to redirect the user to our authorize endpoint. (Note that linebreaks have been added in order to make the full URL more readable)
https://controller.myoneid.co.uk/v2/authorize
?client_id={{ client_id }}
&redirect_uri={{ return_url }}
&response_type=code
&scope={{ scopes }}
&state={{ state }}
Authorize endpoint parameters
- client_id (required): The application client id.
- redirect_uri (required): The URL to redirect to after the user has been authenticated.
- response_type (required): Always code.
- scope (required): The scopes that you require for the user and product that will be used to retrieve them (separated by URL encoded spaces). You can find a full list of product to scope at the Service Overview section.
- state (required): A unique identifier for the journey.
Example
<a href="
https://controller.myoneid.co.uk/v2/authorize
?client_id=1234
&redirect_uri=https://example.myoneid.co.uk/return
&response_type=code&scope=openid profile address email phone
&state=randomstateid1234
"> Verify with OneID</a>
Was this page helpful?