Legal Terms

Agreements

The endpoint is designed to handle requests for retrieving or fetching agreements. It allows users to access information about agreements made for using the system or application.

get
Authorizations
Responses
200

Success

application/json
get
GET /api/v1/agreements HTTP/1.1
Host: api.artificient.de
Authorization: Bearer JWT
Accept: */*
200

Success

[
  {
    "question": "text",
    "answer": "text"
  }
]

Header Request Parameters

Authentication Bearer Token

Response

The provided endpoint response contains an array of several properties, including:

question: the question property indicates a string or text that represents a question about the license agreement of the app being posed, e.g. "APPLICABLE LAW".

answer: the answer property represents a string or text that provides the corresponding answer to the question, e.g. "This License Agreement is governed by the German Basic Law excluding its conflicts of law rules.".

Privacy Policy

The endpoint is designed to handle requests for retrieving or fetching a privacy policy from the system or application.

get
Authorizations
Responses
200

Success

application/json
get
GET /api/v1/PrivacyPolicy HTTP/1.1
Host: api.artificient.de
Authorization: Bearer JWT
Accept: */*
200

Success

{
  "lastUpdate": "2025-08-23T20:09:13.458",
  "privacyPolicies": [
    {
      "id": 1,
      "question": "text",
      "answer": "text",
      "order": 1,
      "createDate": "2025-08-23T20:09:13.458",
      "modifyDate": "2025-08-23T20:09:13.458",
      "getMaxDate": "2025-08-23T20:09:13.458"
    }
  ]
}

Header Request Parameters

Authentication Bearer Token

Response

The provided endpoint response contains several properties, including:

lastUpdate: the lastUpdate property represents a specific date and time when the information or data was last updated, which is formatted as "yyyy-MM-dd'T'HH:mm:ss.SSS", and it is expected to be a string value, e.g. "2023-03-13T12:15:11.697".

privacyPolicies: the privacyPolicies property represents an array of objects that contain information about privacy policies, including:

  • id: the id property represents a numerical identifier associated with a privacy policy entry, e.g. 36.

  • question: the question property represents a string or text that serves as a question related to privacy policies, e.g. "Changes to Privacy Policy".

  • answer: the answer property represents a string or text that provides the corresponding answer to the privacy policy question, e.g. "We may revise this Privacy Policy from time to time in our sole discretion. If there are any material changes to this Privacy Policy, we will notify you as required by applicable law. You understand and agree that you will be deemed to have accepted the updated Privacy Policy if you continue to use the App after the new Privacy Policy takes effect.".

  • order: the order property represents a numerical value indicating the order or sequence of the privacy policy entry, e.g. 7.

  • createDate: the createDate property represents a specific date and time when the privacy policy entry was created. It is formatted as "yyyy-MM-dd'T'HH:mm:ss.SSS", e.g. "2023-03-13T12:21:28.239".

  • modifyDate: the modifyDate property represents a specific date and time when the privacy policy entry was last modified. It is formatted as "yyyy-MM-dd'T'HH:mm:ss.SSS", e.g. "2023-03-17T12:21:30.502".

  • getMaxDate: the getMaxDate property represents the maximum date and time for the privacy policy. It is formatted as "yyyy-MM-dd'T'HH:mm:ss.SSS", e.g. "2023-03-13T12:21:28.239".

Terms & Conditions

The endpoint is designed to handle requests for retrieving or fetching terms and conditions information from the system or application.

get
Authorizations
Responses
200

Success

application/json
get
GET /api/v1/terms HTTP/1.1
Host: api.artificient.de
Authorization: Bearer JWT
Accept: */*
200

Success

[
  {
    "question": "text",
    "answer": "text"
  }
]

Header Request Parameters

Authentication Bearer Token

Response

The provided endpoint response contains an array of several properties, including:

question: The question property represents a string or text that serves as a question of terms and conditions, e.g. "Payment".

answer: The answer property represents a string or text that provides the corresponding answer to the question, e.g. "The App is provided to you free of charge and you will not be charged for installing the App.\r\nGIZO charges insurance companies service fees for providing safety functions, driving data collection and analysis services.".

Last updated