INTERNAL-Authorization

<back to all web services

GetAuthorizationPost

Requires Authentication
The following routes are available for this service:
POST/authorization
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GetAuthorizationResponse:
    is_authorized: bool = False
    parameters: Optional[Dict[str, str]] = None
    user_object_id: Optional[str] = None
    user_tenant: Optional[str] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GetAuthorizationPost(IGetAuthorization):
    # @ApiMember()
    service_name: Optional[str] = None

    # @ApiMember()
    token_string: Optional[str] = None

    # @ApiMember()
    user_token_string: Optional[str] = None

    # @ApiMember()
    profile: Optional[str] = None

Python GetAuthorizationPost DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /authorization HTTP/1.1 
Host: nkapi-sgepz3-auth-r1.azurewebsites.net 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"serviceName":"String","tokenString":"String","userTokenString":"String","profile":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"isAuthorized":false,"parameters":{"String":"String"},"userTenant":"String"}