Authentication
Parameter
Required
Description
Authorization: Bearer <token>Authentication using
createConfig({
Main: {
...
auth: {
token: () => "MainAuthToken",
prefix: "Admin",
headerName: "Authentication"
},
...
},
Secondory: {
...
auth: {
token: () => "MeowMeowMeowMeow",
prefix: "Kitty",
headerName: "Authentication"
},
...
}
});Last updated