Endpoint Parameters

  • Request parameters

    Name Type Origin Description
    AppKey String Route Unique key for each application
    ValidFrom String Body Secret valid from date
    ValidUntil String Body Secret valid until date
  • Response Parameters

    View Response Codes
    Name Type Description
    Secret String Add secret
    SecretId Integer Add secret id
    ValidFrom String Add valid date from
    ValidUntil String Add valid date until
  • Request Example

    Request URL
    POST /developer/apps/fad18b00-c651-4bb4-ace6-5028f26f6b12/secrets
    Request Body
    {
      "ValidFrom": "2019-06-20T07:27:42Z",
      "ValidUntil": "2021-06-20T07:27:42Z"
    }
    
  • Response Example

    Response body
    {
      "Secret": "stringValue",
      "SecretId": 99,
      "ValidFrom": "0001-01-01T00:00:00Z",
      "ValidUntil": "0001-01-01T00:00:00Z"
    }