Skip to main content
POST
/
apps
/
at-pt
/
v1
/
entry
/
{silo_entry_id}
/
credentials
cURL
curl --request POST \
  --url https://api.invopop.com/apps/at-pt/v1/entry/{silo_entry_id}/credentials \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "username": "599999993/37",
  "password": "MySecretPassword123"
}
'
{
  "message": "<string>"
}
This endpoint allows to set or update the AT web services credentials for a supplier. Credentials are validated against the AT Series web service before being stored to ensure they are correct and active. These credentials are necessary to register series and send documents to the AT via web services.

Authorizations

Authorization
string
header
required

Use the Bearer scheme with a valid JWT token to authenticate requests.

Example: Authorization: Bearer <token>

Path Parameters

silo_entry_id
string
required

Silo entry ID of the supplier to set the credentials for.

Example:

"347c5b04-cde2-11ed-afa1-0242ac120002"

Body

application/json
username
string
required

AT username.

Example:

"599999993/37"

password
string<password>
required

AT password.

Example:

"MySecretPassword123"

Response

Credentials updated successfully.