Retrieve partner's configurations
GET/v1/validation-submission-configurations
Retrieve partner's configurations
Responses​
- 200
- 400
- 401
- 403
Successfully fetch configurations
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
id string
Validation Submission configuration id
Example:
hostedconfiguration_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
name stringnullable
Validation Submission configuration name
object string
Example:
validation_submission_configuration
{
"data": [
{
"id": "hostedconfiguration_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"name": "string"
}
],
"object": "validation_submission_configuration"
}
Bad request
- application/json
- Schema
- Example (from schema)
Schema
error
object
code string
title string
message string
reasons string[]nullable
{
"error": {
"code": "string",
"title": "string",
"message": "string",
"reasons": [
"string"
]
}
}
Unauthorized
Forbidden (scope)
- application/json
- Schema
- Example (from schema)
Schema
error
object
code string
Example:
forbidden
title string
Example:
Forbidden
message string
Example:
Access is denied due to missing scope permissions
{
"error": {
"code": "forbidden",
"title": "Forbidden",
"message": "Access is denied due to missing scope permissions"
}
}
Loading...